I think I might be running into a similar issue to...
# troubleshooting
j
I think I might be running into a similar issue to Avinash, but with the postgres tap.
Copy code
time=2022-12-22 16:07:28 name=tap_postgres level=INFO message=Selected streams: [] 
time=2022-12-22 16:07:28 name=tap_postgres level=INFO message=No streams marked as currently_syncing in state file
The YAML file was working then i added the rest of the tables replication key to the metadata, and forced cleared the state to do a full load. There are 80+ tables all in one schema, which the filter_schema is set to (public) and then have the select set as
Copy code
select:
        - public.*.*
        - '!public-active_storage_attachments.*.*'
        - '!public-active_storage_blobs.*.*'
        - '!public-active_storage_variant_records.*.* '
        - '!public-drivers_partners.*.*'
        - '!public-highnote_l2.*.*'
        - '!public-schema_migrations.*.*'
        - '!public-*.password.*'
Figured out the issue and the fix. I belive is that i had similar things in both the environment section as well as plugins section. I moved things down to the plugin section and things seem to be working