Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If a runnable hangs while running in a threadpoolexecutor, is there a way to find out that it has hung and kill the runnable? Will the getActiveCount method consider a runnable that's hanging as "actively executing"?

share|improve this question
What do you mean by "hangs"? – toto2 Jul 16 '11 at 0:03
1  
You can "kill" a task by calling cancel which itself calls interrupt on the thread. The catch is that for interrupt to do something, you have to program it yourself in the run method. So your "hanging" thread needs to be checking the interrupt periodically (or be inside a method such as Thread.sleep that wakes up on interrupt). – toto2 Jul 16 '11 at 0:06
@toto, I consider a task to hang if it is taking too long to give me a result (by an order of magnitude). I haven't encountered such a problem (yet) so I'm just thinking hypothetically (and curious). – lgp Jul 16 '11 at 0:24

1 Answer

up vote 4 down vote accepted

There is no safe way to kill a thread which is busy (other than running it in another process and killing it) You can detect if a thread is taking to long by waiting for the result with a timeout. You can also add a task to cancel the task after a timeout, however this will only interrupt a thread's task, not kill it.

You are better off determining why the task "hangs" and fixing the code so it doesn't.

When you start a task you store Thread.currentThread() is a share variable. You can then take a getStackTrace() periodically to determine what it is doing and log it.

share|improve this answer
thanks good to know, +1 – mKorbel Jul 16 '11 at 0:57

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.