OpenMetadata/ingestion/examples/workflows/snowflake_usage.json

41 lines
860 B
JSON
Raw Normal View History

2021-08-01 14:27:44 -07:00
{
"source": {
"type": "snowflake-usage",
"config": {
2021-08-09 09:19:35 +05:30
"host_port": "account.region.service.snowflakecomputing.com",
"username": "username",
"password": "strong_password",
2021-08-01 14:27:44 -07:00
"database": "SNOWFLAKE_SAMPLE_DATA",
2021-08-09 09:19:35 +05:30
"account": "account_name",
2021-08-01 14:27:44 -07:00
"service_name": "snowflake",
"duration": 2
}
},
"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"
}
},
"bulk_sink": {
"type": "metadata-usage",
"config": {
"filename": "/tmp/snowflake_usage",
"service_name": "snowflake"
2021-08-01 14:27:44 -07:00
}
},
"metadata_server": {
"type": "metadata-server",
"config": {
"api_endpoint": "http://localhost:8585/api",
"auth_provider_type": "no-auth"
}
}
}