Hi DataHub Team,
I am trying to ingest the Snowflake metadata information from a particular database but I want to refrain from ingesting any schema that ends in *_DEV
or *_DEMO
or *_QA
. I have created the ingestion recepie file as provided below. While execution the ingestion is failing and it says could not find any schemas or tables. Can you please point me out where am I getting it wrong
type: snowflake
config:
account_id: Snowflake_Account_redacted
include_table_lineage: true
include_view_lineage: true
include_tables: true
include_views: true
profiling:
enabled: true
profile_table_level_only: false
stateful_ingestion:
enabled: false
warehouse: Warehouse_redacted
username: User_redacted
password: '${Snowflake_pwd}'
role: Role_Redacted
database_pattern:
allow:
- DB_I_WANT_TO_INGEST
schema_pattern:
deny:
- '*_DEV'
- '*_TEST'
- '*_DEMO'
sink:
type: datahub-rest
config:
server: '<http://datahub-datahub-gms.datahub.svc.cluster.local:8080>'```