Hi all, I want to test ingestion from a Snowflake ...
# ingestion
p
Hi all, I want to test ingestion from a Snowflake data source with only a single table. Following the docs at https://datahubproject.io/docs/generated/ingestion/sources/snowflake, I'm trying
table-pattern:
allow:
- "^my_table_name$"
. But this does not ingest the desired table but instead ingests many other tables and views. Can you please help me configure this correctly?
plus1 1
h
Hey @plain-beach-61128
table_pattern
config matches pattern with fully qualified table name. So you'll need to change the pattern to use wildcard
Copy code
table-pattern:
  allow:
  - ".*my_table_name$"
thank you 1