Hi all, I am new to Meltano and I am trying to cre...
# getting-started
n
Hi all, I am new to Meltano and I am trying to create a simple EL pipeline to get data from Postgres to a CSV. I followed the documentation as explained here https://docs.meltano.com/getting-started. But in the end I am getting an error, "`ELT could not be completed: Cannot start extractor: Catalog discovery failed:`". Is there something I'm missing? Here are some of my screenshots 1. extractor configurations 2. my yml file 3. an error I get when trying to test the extractor configurations
t
Usually that error means there's an issue connecting to the source. But I think the "plugin configuration is invalid" error is the real problem here, if only because I haven't see that before. I don't see a
select
entity in your extractor configuration; I wonder if it's failing because that's missing.
I would try running
meltano invoke tap-postgres --discover
and see what that produces... that should tell you something useful.
n
thanks, let me do that.