You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 10, 2019. It is now read-only.
Consider a case where there is a job queue and a worker has taken a job from the queue but has not finished it. While the job is being processed, the worker restarts. It appears that this job will never be given to another worker. Presumably, the jobs should have an optional timeout period after which they will be automatically cancelled.
The text was updated successfully, but these errors were encountered:
Yes. I'll add an example manage script. The in-flight jobs are in a zset organized by time, so you can have a manage script occasionally look at these values and retry or stall those jobs.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Consider a case where there is a job queue and a worker has taken a job from the queue but has not finished it. While the job is being processed, the worker restarts. It appears that this job will never be given to another worker. Presumably, the jobs should have an optional timeout period after which they will be automatically cancelled.
The text was updated successfully, but these errors were encountered: