joshua_janicas
03/14/2024, 1:32 PMreplication-key
if you are doing a replication-method
of INCREMENTAL?
extractors:
- name: tap-postgres
metadata:
some_entity_id:
replication-method: INCREMENTAL
replication-key: id
other_entity:
replication-method: FULL_TABLE
"*":
replication-method: INCREMENTAL
"*_full":
replication-method: FULL_TABLE
joshua_janicas
03/14/2024, 1:32 PMEdgar Ramírez (Arch.dev)
03/14/2024, 3:42 PMWhat happens if no key is provided?Depends on the tap implementation, but it would most likely fail. And yeah, that example probably needs to add a replication key to the
*
rule.joshua_janicas
03/14/2024, 3:43 PM