ben_marengo
04/20/2021, 1:28 PMException: only INCREMENTAL, LOG_BASED, and FULL TABLE replication methods are supported.
meltano.yaml:
extractors:
- name: tap-mysql
variant: transferwise
pip_url: pipelinewise-tap-mysql
config:
database: bens_db
select:
- '*.*'
metadata:
bens_table:
replication-method: INCREMENTAL
replication-key: date_modified
the metadata doesnt seem to have been added to .meltano/run/tap-mysql/tap.properties.json (but the table and its columns have been)
can anyone give me a hint what i might be doing wrong?visch
04/20/2021, 1:44 PM--dump=catalog > catalog
Invoke you can do the same.
My guess is that you are selecting a bunch more streams then just bens_table. You could change your select to 'bens_table.*' and that might just work right away tooben_marengo
04/20/2021, 1:49 PMreplication-method: INCREMENTAL
replication-key: date_modified
are nowhere to be seeben_marengo
04/20/2021, 1:51 PMselect:
- 'bens_table.*'
shows no difference 馃槙visch
04/20/2021, 1:51 PMvisch
04/20/2021, 1:52 PMvisch
04/20/2021, 1:54 PMmetadata:
'*':
replication-method: INCREMENTAL
To see if that's the case. There may be a better way to tell if it's matching or notben_marengo
04/20/2021, 1:57 PMselect:
- '*.*'
metadata:
bens_db-bens_table:
replication-method: INCREMENTAL
replication-key: date_modified
this worksben_marengo
04/20/2021, 1:57 PM"tap_stream_id": "bens_db-bens_table"ben_marengo
04/20/2021, 1:58 PMben_marengo
04/20/2021, 1:58 PMvisch
04/20/2021, 1:58 PMvisch
04/20/2021, 2:06 PMvisch
04/20/2021, 2:08 PMben_marengo
04/20/2021, 3:36 PMaaronsteers
04/20/2021, 5:30 PM