Hello everyone! I working with a pipeline using ta...
# troubleshooting
p
Hello everyone! I working with a pipeline using tap-s3-csv with target-csv. The first time that I ran the pipeline worked fine, but now I have some issues. • When I run again adding a destination path in the target (first time, I set an empty string), don't create the csv file in the destination path. Any idea what is wrong? • In the configuration of the s3-csv, to configure the setting tables I try this: _tables: [{ "search_pattern": "tablename1.csv", "table_name": "tablename1" }, { "search_pattern": "tablename2.csv", "table_name": "tablename2" }]_ But only get one of the tables. Whats it's wrong or what can I could change to works with more than one table?
e
Hi @pablo_azofeifa! It's possible that you're not getting the table on subsequent runs due to state. Which command are you using to run your pipeline? You might wanna try running with the
--full-refresh
flag.
p
Hi ! I use meltano run tap-s3-csv target-csv
I'll try with this.
It worked. Thanks a lot !