Error handling and retries #193
Closed
adrienbrault
started this conversation in
General
Replies: 2 comments 6 replies
|
Hi, For retries, you can decide how you want them to behave based on your requirements. If you want to implement exponential backoff, it's possible to do so directly in your entrypoint function by adding delays between retries and re-queuing jobs when needed. The entrypoint function will be executed in this dispatach function. Line 408 in 5b54585 For producers, its a plain sql-insert. Unsure if there is anything i can help with there? |
3 replies
|
@adrienbrault Ive got this PR, could you take a look if looks promising for your use-case? |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hey,
How should I handle retries with this library?
Let's say I have a worker/consumer that connects to a remote API, and it is down.
All reactions