florian_ernst
06/01/2023, 3:39 PMtarget-snowflake
, using pipelinewise’s variant:
Loading failed code=-11
ELT could not be completed: Loader failed
I’m using Python 3.10.11, and also tried 3.10.1 without success. The logs (even in debug mode) give 0 indication 🥲florian_ernst
06/01/2023, 3:40 PMmeltano invoke snowflake-target
Reuben (Matatika)
06/01/2023, 4:01 PMmeltano elt
is quite old now. Have you tried with meltano run
?
meltano --log-level debug run tap-slack target-snowflake
Otherwise (you may have already tried this), separate out just the target process like
# redirect tap stdout to file
meltano invoke tap-slack > tap.out
# pipe tap stdout from file to target
cat tap.out | meltano --log-level debug invoke target-snowflake
florian_ernst
06/01/2023, 4:05 PMmeltano run
(see screenshot)
I didn’t try splitting the processes, and turns out it’s working... I’m not sure I should be happy about that 😅
It confirms the fact that the data is indeed correctly sent to Snowflake - but something when ending the run
process crashesReuben (Matatika)
06/01/2023, 4:10 PMmeltano invoke
way. Unless someone else has any suggestions, I would probably open an issue.edgar_ramirez_mondragon
06/01/2023, 8:12 PMflorian_ernst
06/02/2023, 1:20 PMtap-csv
tap 🥲
It works well when doing meltano invoke tap-csv | meltano invoke target-snowflake
, but meltano run tap-csv target-snowflake
fails.florian_ernst
06/12/2023, 1:56 PMflorian_ernst
07/06/2023, 1:23 PMtarget-snowflake
’s Pyarrow version, which was stuck to 8.0.0 - a version known to randomly fail for some people