Is there a straightforward way to tell a tap to ju...
# troubleshooting
t
Is there a straightforward way to tell a tap to just continuously re-run forever until I tell it to stop? My intent is not a real-time data pipeline but just to force it to finish a historical backfill against a MySQL database where I regularly get a timeout error (this issue).
a
There's a generic solution here, which just loops until the process returns
0
(success) https://stackoverflow.com/a/24770962/4298208