Hello, just wondering when this pr will be ready i...
# troubleshooting
b
Hello, just wondering when this pr will be ready in tap-mysql? https://github.com/MeltanoLabs/tap-mysql/commit/376cb3e9335d46ba89070ad12f10f671fc1799ce
t
Looks like that PR is merged. Is it not working? Doesn’t look like we’ve cut a release yet for it, but if you’re using the tip of main it should be there. cc @visch
b
have not tried it yet, I guessed that its not released yet because nothing is reflected in here https://hub.meltano.com/extractors/tap-mysql--transferwise/ But I still can use it, right? just for testing now .. till you guys release it officially
v
transferwise is a different mysql variant than the meltanolabs variant. I built and merged that PR last night!
We don't have a release anywhere on pypi for tap-mysql yet but you definitely can use it still by pointing to the git repo.
b
how that would be in the yml file? can it be done manually without running
meltano add extractor tap-mysql
-> how to configure it? etc.. ? @visch
Copying this would work too and running
meltano install
Copy code
- name: tap-mysql
    namespace: tap_mysql
    pip_url: git+<https://github.com/AutoIDM/tap-meltanohub.git>
    capabilities:
    - state
    - catalog
    - discover
    - about
    - stream-maps
    settings:
    - name: host
    - name: port
      kind: integer
    - name: user
    - name: password
      kind: password
    - name: database
    - name: sqlalchemy_url
      kind: password
    - name: ssh_tunnel.private_key
      kind: password
    - name: ssh_tunnel.private_key_password
      kind: password
    - name: ssh_tunnel.host
    - name: ssh_tunnel.username
    - name: ssh_tunnel.port
b
Copying this would work too and running
meltano install
into which file? @visch
v
meltano.yml , have you ran through the https://docs.meltano.com/getting-started/installation/ tutorial? I think it touches on this stuff as well, it might help you here!