Kevin Phan
12/02/2024, 3:32 PM# Core DB taps
- name: tap-core-db-testing
inherit_from: tap-postgres-pipelinewise
namespace: tap_postgres_pipelinewise
config:
<<: *coredb_credentials
dbname: "postgres"
logical_poll_total_seconds: 60
select:
- public-employees.id
- public-employees.user_id
- public-employees.created_at
- public-employees.updated_at
- public-employees.deleted_at
# Default to `*` for all other tables
- public-conversions.*
Im noticing certain fields from employees table that are still being ingested . I did not do -public-employees.*
Can this be achieved through adjusting the stream maps to further filter whats in the catalog? This should workEdgar Ramírez (Arch.dev)
12/02/2024, 3:45 PMIm noticing certain fields from employees table that are still being ingestedDo you see those fields printed if you run
meltano select tap-core-db-testing --list
?Kevin Phan
12/03/2024, 5:16 PMKevin Phan
12/03/2024, 5:22 PMKevin Phan
12/04/2024, 6:54 PMEdgar Ramírez (Arch.dev)
12/04/2024, 7:18 PM--refresh-catalog
flag?Kevin Phan
12/04/2024, 7:24 PMKevin Phan
12/16/2024, 6:20 PM