OpenMetadata/ingestion/examples/workflows/clickhouse_usage.json

45 lines
904 B
JSON
Raw Normal View History

{
2022-04-09 13:50:24 +05:30
"source": {
"type": "clickhouse_usage",
"serviceName": "local_clickhouse",
"serviceConnection": {
"config": {
2022-04-09 13:50:24 +05:30
"type": "ClickHouse",
"username":"default",
"password":"",
2022-04-09 13:50:24 +05:30
"hostPort": "localhost:8123",
"database": "default"
}
},
2022-04-09 13:50:24 +05:30
"sourceConfig": {
"config": {
"queryLogDuration": "1"
}
}
},
"processor": {
"type": "query-parser",
"config": {
"filter": ""
}
},
"stage": {
"type": "table-usage",
"config": {
"filename": "/tmp/clickhouse_usage"
}
},
2022-04-09 13:50:24 +05:30
"bulkSink": {
"type": "metadata-usage",
"config": {
"filename": "/tmp/clickhouse_usage"
}
},
2022-04-09 13:50:24 +05:30
"workflowConfig": {
"openMetadataServerConfig": {
"hostPort": "http://localhost:8585/api",
"authProvider": "no-auth"
}
}
}