Simon Schmitke
02/06/2024, 9:59 PM...
plugins:
extractors:
- name: tap-postgres
variant: transferwise
pip_url: pipelinewise-tap-postgres
config:
host: $TAP_POSTGRES_HOST
port: $TAP_POSTGRES_PORT
user: $TAP_POSTGRES_USER
password: $TAP_POSTGRES_PASSWORD
dbname: $TAP_POSTGRES_DATABASE
default_replication_method: INCREMENTAL
# default_replication_key: updated_at
select:
- public-my_table.*
using default_replication_key
has no effect and I am met with the error that the replication_key is null.
Any ideas?Simon Schmitke
02/07/2024, 4:00 PMplugins:
extractors:
- name: tap-postgres
variant: transferwise
pip_url: pipelinewise-tap-postgres
config:
host: $TAP_POSTGRES_HOST
port: $TAP_POSTGRES_PORT
user: $TAP_POSTGRES_USER
password: $TAP_POSTGRES_PASSWORD
dbname: $TAP_POSTGRES_DATABASE
select:
- public-my_table.*
# - public-*.* # for all tables
metadata:
'public-my_table':
# '*': # for all tables
replication-method: INCREMENTAL
replication-key: updated_at