What's the syntax for specifying the replication k...
# troubleshooting
g
What's the syntax for specifying the replication key for a table? I haven't found a concrete example on the docs and I'm having trouble figuring it out. So far I have
metadata:
table-name:
replication_key: "Column name"
In meltano.yaml but I still get the "replication key is None" error. Thanks in advance!
t
I believe it's replication-key (dash not underscore).
I think you'll need to specify replication-method too
g
Thank you very much. I had both the underscore instead of dash, plus two other problems: • I had metadata nested inside config (this also wouldn't be a problem if I had used the cli command) • I was using the column name as it appears in the DB instead of the lowercase-dashed one meltano turns it into It works now, thanks again.