I’ve got a meltano process that fetches data from ...
# troubleshooting
s
I’ve got a meltano process that fetches data from several tables. When there’s a failure, meltano just stops and will not continue attempting to load other tables. Is there any way to tell meltano to continue attempting a sync with other tables, and only report a failure when attempted to run everything?
a
Thats more likely happening in the tap itself. And if meltano reports a failure, its also likely that the tap sent a nonzero exit code and the tap itself exited. Meltano cant do much about that (probably not easily without some fancy and wierd log scraping and dynamic select changes -- would be brittle I imagine). I would look at ways to tap can be made more resilient. Welcome other opinions though