Uriel Salvio
12/27/2024, 4:09 PMmeltano invoke tap-mongodb > output.json
works properly
If i run meltano run extractor tap-mongodb target-postgres
I get an error:
"Error: Block extractor not found"
this is my loaders section:
loaders:
- name: target-postgres
variant: meltanolabs
pip_url: meltanolabs-target-postgres
config:
user: sqlmesh
database: sqlmesh
host: localhost
port: 5432
What could be the issue?
I can properly connect to my db with dbeaver .Matt Menzenski
12/27/2024, 4:10 PMmeltano run tap-mongodb target-postgres
(with no extractor
in that command)Uriel Salvio
12/27/2024, 4:11 PMMatt Menzenski
12/27/2024, 4:13 PMmeltano run
command (docs) expects a list of plugin names after it, and “extractor” is not a known plugin name to your meltano project. I believe that’s what the error message "Error: Block extractor not found"
is saying.Matt Menzenski
12/27/2024, 4:14 PMmeltano add
command (docs) needs you to include extractor
so that it knows which kind of plugin you want to add.Uriel Salvio
12/27/2024, 4:15 PM