Brand new to Meltano, working on my first test pro...
# troubleshooting
m
Brand new to Meltano, working on my first test project and my configuring my first extractor. This is my meltano.yml: version: 1 default_environment: dev project_id: xx environments: - name: dev config: plugins: extractors: - name: tap-mysql config: host: xxx_server port: 3306 user: xxx_user database: xxx_db select: - '*.*' metadata: '*.*': replication-method: FULL_TABLE - name: staging - name: prod plugins: extractors: - name: tap-mysql variant: transferwise pip_url: pipelinewise-tap-mysql I am getting the following error when I try to test it:
meltano --environment=dev config tap-mysql test
2023-05-30T034017.770162Z [info ] Environment 'dev' is active Need help fixing this problem? Visit http://melta.no/ for troubleshooting steps, or to join our friendly Slack community. Plugin configuration is invalid Exception: only INCREMENTAL, LOG_BASED, and FULL TABLE replication methods are supported Is there another place to set the replication method, or is there something wrong with my config? Thank you!
p
@mark_myers can you try updating the metdata entity selection to
*
instead of
*.*
. When I look at https://docs.meltano.com/guide/integration#setting-metadata it seems that should work for you.