I have a queue interface I want to implement in redis. The trick is that each worker can claim an item for N seconds after that it’s presumed the worker has crashed and the item needs to be claimable again. It’s the worker’s responsibility to remove the item when finished. How would you do this in redis? I am using phpredis but that’s kind of irrelevant.
Share
To realize a simple queue in redis that can be used to resubmit crashed jobs I’d try something like this:
a worker trying to grab a job would do something like this:
And every now and then, we could just grab our list and check that all jobs that are in there actually have a lock.
If we find any jobs that DON’T have a lock, this means it expired and our worker probably crashed.
In this case we would resubmit.
This would be the pseudo code for that: