alexandre_brehelin
06/01/2022, 1:28 PM1.97.0 . We were running this workflow everyday with bin log replication.
Today we update Meltano to 1.105.0 and now our workflows raise the following exception
raise Exception("only INCREMENTAL, LOG_BASED, and FULL TABLE replication methods are supported")
We don't understand it, we have change only the meltano version. Do you know why this exception raise ?edgar_ramirez_mondragon
06/01/2022, 1:34 PMmeltano elt ... command?
2. using inheritance in your plugins?
If you're doing 1 but not 2, can you try using the flag meltano --no-environment elt ... ?alexandre_brehelin
06/01/2022, 1:52 PMmeltano elt tap-mysql-magasin target-csv --job_id=job-id
And we ue MELTANO_ENVIRONMENT for configuration and inheritance like:
environments:
- name: dev
config:
plugins:
extractors:
- name: tap-mysql
config:
database: prod
ssl: true
use_gtid: true
engine: mysql
metadata:
'*':
replication-method: LOG_BASED
- name: tap-mysql-magasin
select:
- prod-table.*