OpenMetadata/ingestion/examples/workflows/snowflake_usage.json

47 lines
968 B
JSON
Raw Normal View History

2021-08-01 14:27:44 -07:00
{
"source": {
"type": "snowflake-usage",
"serviceName": "snowflake",
"serviceConnection": {
"config": {
"type": "Snowflake",
"hostPort": "account.region.service.snowflakecomputing.com",
"username": "username",
"password": "strong_password",
"database": "SNOWFLAKE_SAMPLE_DATA",
"warehouse": "COMPUTE_WH",
"account": "account_name"
}
},
"sourceConfig": {
"config": {
"resultLimit":1000
}
2021-08-01 14:27:44 -07:00
}
},
"processor": {
"type": "query-parser",
"config": {
"filter": ""
}
},
"stage": {
2021-08-14 00:09:51 +05:30
"type": "table-usage",
2021-08-01 14:27:44 -07:00
"config": {
"filename": "/tmp/snowflake_usage"
}
},
"bulkSink": {
2021-08-01 14:27:44 -07:00
"type": "metadata-usage",
"config": {
"filename": "/tmp/snowflake_usage"
2021-08-01 14:27:44 -07:00
}
},
"workflowConfig": {
"openMetadataServerConfig": {
"hostPort": "http://localhost:8585/api",
"authProvider": "no-auth"
2021-08-01 14:27:44 -07:00
}
}
}