Hey all, I have a system where we work on jobs that are up to 14 days long, workers are interruptable, meaning we can kill it at any moment and its jobs should be picked up as soon as possible, ideally with 1s timeout. I see two issues with using the factory:
Limited retry count, but max int 32 should be sufficient.
Exponential (non configurable?) backoff.
Is there a ready made solution for this? If we were to implement a custom backoff, could you see any potential pitfalls with low retry timer?
Hey all, I have a system where we work on jobs that are up to 14 days long, workers are interruptable, meaning we can kill it at any moment and its jobs should be picked up as soon as possible, ideally with 1s timeout. I see two issues with using the factory:
Is there a ready made solution for this? If we were to implement a custom backoff, could you see any potential pitfalls with low retry timer?