Ran into this when trying to set up imports and exports with Meltano. The bug ended up being an incorrect .yaml config.
I had:
config:
host: meltano-test-cluster.[...].rds.amazonaws.com
port:
user: [username]
dbname: [dbname]
Needed to fix to:
config:
host: meltano-test-cluster.[...].rds.amazonaws.com
port: 5432
user: [username]
dbname: [dbname]
Easy in retrospect, but the error message isn't particularly descriptive and I couldn't find much on google, so posting this!
I work at Akkio, a predictive AI service allowing you to do machine learning without any code! Check us out if you're interested in that kind of thing.
Top comments (1)
Perhaps Meltano should validate the plugin configuration using JSON schemas