Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As you can see from the attached image, I've got a couple of workers that seem to be stuck. Those processes shouldn't take longer than a couple of seconds.

enter image description here

I'm not sure why they won't clear or how to manually remove them.

I'm on Heroku using Resque with Redis-to-Go and HireFire to automatically scale workers.

share|improve this question

6 Answers

up vote 47 down vote accepted

None of these solutions worked for me, I would still see this in redis-web:

0 out of 10 Workers Working

Finally, this worked for me to clear all the workers:

Resque.workers.each {|w| w.unregister_worker}
share|improve this answer
3  
This worked for me. It unregistered all workers which was a bit annoying. But this followed by heroku restart seemed to do the trick. It now shows the correct number of workers. – Brian Armstrong Aug 14 '12 at 5:27
This was the solution for me! Thanks! – shedd Oct 3 '12 at 12:37
This is exactly what I was looking for. – Steph Rose Oct 15 '12 at 18:06
This worked for me too! – Henley Chiu Oct 30 '12 at 3:34
This should be the accepted answer - the exact solution to the question as asked. – Michael Shimmins Jan 22 at 13:51

In your console:

queue_name = "process_numbers"
Resque.redis.del "queue:#{queue_name}"

Otherwise you can try to fake them as being done to remove them, with:

Resque::Worker.working.each {|w| w.done_working}

EDIT

A lot of people have been upvoting this answer and I feel that it's important that people try hagope's solution which unregisters workers off a queue, whereas the above code deletes queues. If you're happy to fake them, then cool.

share|improve this answer
3  
If he does this it will delete the whole queue, he just wants to remove the stuck ones.. – jBeas Sep 28 '11 at 15:02
1  
Small update: You now have to use Resque.redis.del instead of Resque.redis.delete – James P McGrath Nov 3 '11 at 4:09
1  
There's actually a Resque.remove_queue() method now – iainbeeston May 16 at 6:44

Probability you have resque gem installed, so you can open the console and get current workers

Resque.workers

It returns a list of workers

#=> [#<Worker infusion.local:40194-0:JAVA_DYNAMIC_QUEUES,index_migrator,converter,extractor>]

pick the worker and prune_dead_workers, for example the first one

Resque.workers.first.prune_dead_workers
share|improve this answer
Actually, on second try, this didn't do anything. – Shpigford Sep 23 '11 at 18:31
1  
This works great for clearing out resque workers who were killed off without unregistering. – Lukas Eklund Jun 25 '12 at 15:19
This seems like the new best answer since it doesn't unregister all of them. Shouldn't prune_dead_workers be a class method? But in any event, great solution! Thanks. – Brian Armstrong Jan 28 at 2:32
That's definitely the solution for killed -9 workers. The only thing i would add is that you need to do that on same server where you killed with -9. – Stanislav O. Pogrebnyak Mar 27 at 19:59

Run this command wherever you ran the command to start the server

$ ps -e -o pid,command | grep [r]esque

you should see something like this:

92102 resque: Processing ProcessNumbers since 1253142769

Make note of the PID (process id) in my example it is 92102

Then you can quit the process 1 of 2 ways.

  • Gracefully use QUIT 92102

  • Forcefully use TERM 92102

* I'm not sure of the syntax it's either QUIT 92102 or QUIT -92102

Let me know if you have any trouble.

share|improve this answer
1  
In the Linux console: kill -SIGQUIT 92102 – Alexey Jul 16 '12 at 11:39

I had a similar problem that Redis saved the DB to disk that included invalid (non running) workers. Each time Redis/resque was started they appeared.

Fix this using:

Resque::Worker.working.each {|w| w.done_working}
Resque.redis.save # Save the DB to disk without ANY workers

Make sure you restart Redis and your Resque workers.

share|improve this answer

I had stuck/stale resque workers here too, or should I say 'jobs', because the worker is actually still there and running fine, it's the forked process that is stuck.

I chose the brutal solution of killing the forked process "Processing" since more than 5min, via a bash script, then the worker just spawn the next in queue, and everything keeps on going

have a look at my script here: https://gist.github.com/jobwat/5712437

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.