Hello! <I>'m using melanto:latest docker image. Ru...
# troubleshooting
m
Hello! I'm using melanto:latest docker image. Running
melanto add extractor tap-postgres
says:
Copy code
Installed extractor 'tap-postgres'
But
melanto invoke tap-postgres
gives the following error:
Copy code
Catalog discovery failed: command ['/meltano/.meltano/extractors/tap-postgres/venv/bin/tap-postgres', '--config', '/meltano/.meltano/run/tap-postgres/tap.32169e67-37c0-40ea-b5a9-6218edd2e35e.config.json', '--discover'] returned 1
Hope someone can help me fix this issue : )
b
Hello Maxim, have you set capabilities to your
tap-postgres
? Something like this:
Copy code
capabilities:
    - catalog
    - discover
    - properties
    - state
p
@maxim_lopin if you add
--log-level=debug
youll get more detail on why its failing. Try
meltano --log-level=debug invoke tap-postgres
m
I ran
meltano --log-level=debug invoke tap-postgres
, it was a
psycopg2.OperationalError: timeout expired
exception. Thanks : )
v
Hello @maxim_lopin! @Stéphane Burwash and I having the same issue with the
psycopg2.OperationalError: timeout expired
, how did you manage to fix that problem? Was it related to a connection using SSH tunnel by any chance? Thanks!