curved-sandwich-81699
09/09/2021, 7:59 PMsource:
type: "snowflake"
config:
username: ...
password: ...
host_port: ...
database_pattern:
ignoreCase: true
allow:
- "database"
schema_pattern:
ignoreCase: true
allow:
- "schema"
table_pattern:
ignoreCase: true
deny:
- ".*"
The tables from database.schema are still getting ingested. Same thing if using database.*
or database.schema.*
as table_pattern.deny... Or I am missing something?loud-island-88694
helpful-optician-78938
09/10/2021, 5:58 PMcurved-sandwich-81699
09/20/2021, 10:34 PMwitty-state-99511
09/21/2021, 12:00 AMinclude_tables
and include_views
values in your config. Based on that, try to set the appropriate pattern. My hunch is that you’re trying to apply the table_pattern filter to a view. Try the view_pattern instead with the syntax database.schema.table
curved-sandwich-81699
09/21/2021, 12:09 AMview_pattern
and that fixes everything... Thank you!witty-state-99511
09/21/2021, 12:10 AM