albert_luo
08/14/2023, 4:48 PMedgar_ramirez_mondragon
08/14/2023, 5:16 PMsome_entity_id
should be the name of the stream, which for tap-postgres corresponds to a schema + table name, e.g. `public-users`:
extractors:
- name: tap-postgres
metadata:
public-users:
replication-method: INCREMENTAL
replication-key: updated # or whatever column is used to incrementally extract data from the source table
albert_luo
08/14/2023, 5:32 PMuser
08/14/2023, 5:38 PMthe id is always a concatentation of postgres schema name and table name by a '-' ?Yeah, all postgres taps use that pattern.
where can I find information on how other taps entity id's are formatted?
meltano select <your tap> --list --all
should give you the detailed list of entities and columns in your tap. https://docs.meltano.com/reference/command-line-interface/#selectalbert_luo
08/14/2023, 5:55 PMedgar_ramirez_mondragon
08/14/2023, 6:24 PM