Hey all. How can I define primary_keys that should be used for a specific table on the target? I c...
g
Hey all. How can I define primary_keys that should be used for a specific table on the target? I can't seem to find this documentation anywhere.
1
e
Hi @gitau_karugi! The docs are indeed lacking an example for that, but you can use the metadata extra to set them:
Copy code
extractors:
- name: your-tap
  metadata:
    some_stream_id:
      table-key-properties: [id]
g
Thanks Edgar. This works. Much appreciated.
🙌 1