steven_wang
08/15/2024, 10:24 PMEdgar Ramírez (Arch.dev)
08/16/2024, 1:40 AMsteven_wang
08/16/2024, 3:45 PMmetadata
achieves this:
- name: tap-mssql
variant: wintersrd
capabilities:
- state
metadata:
<STREAM_NAME>:
replication-method: INCREMENTAL
replication-key: <DESIRED_REPLICATION_KEY>
steven_wang
08/16/2024, 3:47 PMproperties.json
, metadata
is pretty handy way around this! You can also set the primary key(s) in the metadata:
metadata:
<STREAM_NAME>:
replication-method: INCREMENTAL
replication-key: <DESIRED_REPLICATION_KEY>
table-key-properties: [<PRIMARY_KEY>]
Edgar Ramírez (Arch.dev)
08/16/2024, 3:49 PMmetadata
is the way to go! I was curious if this was for a tap that doesn't accept catalog overrides. So to confirm, does metadata
solve this for you?steven_wang
08/16/2024, 3:51 PM