Hi :wave: I’m trying to set up a pipeline from Po...
# troubleshooting
m
Hi 👋 I’m trying to set up a pipeline from Postgres to BigQuery, using
tap-postgres
and
target-bigquery
. I have succesffully managed to set up tap-postgres, but when I install target-bigquery nothing really happens. It looks like it’s compiling, but then never returns. Any debugging tips?
h
I think the command is “meltano add loader…” Is the meltano.yml file updated after you abort the process? If the meltano.yml looks good, you can try “meltano install —clean” and it will reinstall everything in the meltano-file.
m
Did a clean and started over. Still the same problem I’m afraid. I wonder if this could have something to do with that I’m running on Mac M1? Is there any way I can run the commands with more verbosity, to see what’s going on under the hood?
h
Ah… that would explain why one plug-in installs without trouble. If you try in a cloud VM, you should have a good point of comparison. I haven’t found any settings for added verbosity, but you could try pip-installing the loader manually in a separate env.
v
for debugging try --log-level=debug , so
meltano --log-level=debug install loader target-bigquery
m
Update: It resolved itself yesterday when running in debug mode like you mentioned @visch Not sure why 🤷
thanks anyway! 🙂