Hello! I get `"key_properties field is required"` ...
# troubleshooting
a
Hello! I get
"key_properties field is required"
error while trying to replicate a table from redshift to another redshift. How should I define
key_properties
in my tap-redshift. Have tried to put it in
config
or
metadata
without success. This is how my config looks like:
Copy code
plugins:
  extractors:
  - name: tap-redshift
    variant: monad-inc
    pip_url: git+<https://github.com/Monad-Inc/tap-redshift.git>
    config:
      host: host.docker.internal
      user: admin
      start_date: '2023-11-01T00:00:00Z'
      port: 5439
      dbname: DB
      schema: SCHEMA
Thank you!