Hi everyone, We had serveral mysql-tap and athena-...
# troubleshooting
a
Hi everyone, We had serveral mysql-tap and athena-target worflow that worked very well with Meltano
1.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
Copy code
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 ?
e
Hi @alexandre_brehelin, are you 1. using the
meltano 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 ...
?
a
Hi @edgar_ramirez_mondragon, this fix seems not work. For instance, we using command as follow :
meltano elt tap-mysql-magasin target-csv --job_id=job-id
And we ue
MELTANO_ENVIRONMENT
for configuration and inheritance like:
Copy code
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.*