I'm trying to use
INCREMENTAL
for
replication-method
This is what I have in my
meltano.yml
file:
loaders:
- name: target-iceberg
...
metadata:
'*':
replication-method: INCREMENTAL
replication-key: id # <- that is not timestamp. it is integer
I'm using
tap-csv
and the configurations are as mentioned below:
extractors:
- name: tap-csv
...
config:
csv_files_definition: extract/example_csv_files_def.json
It is appending the data every time I run the ingestion. What am I missing here?