开发者

How to know that a thread in a Thread Pool hangs/freezes

I have queue of tasks for the ThreadPool, and each task has a tendency 开发者_StackOverflow中文版to froze locking up all the resources it is using. And these cant be released unless the service is restarted.

Is there a way in the ThreadPool to know that its thread is already frozen? I have an idea of using a time out, (though i still dont know how to write it), but i think its not safe because the length of time for processing is not uniform.


I don't want to be too presumptuous here, but a good dose of actually finding out what the problem is and fixing it is the best course with deadlocks.

  • Run a debug version of your service and wait until it deadlocks. It will stay deadlocked as this is a wonderful property of deadlocks.
  • Attach the Visual Studio debugger to the service.
  • "Break All".
  • Bring up your threads windows, and start spelunking...

Unless you have a sound architecture\design\reason to choose victims in the first place, don't do it - period. It's pretty much a recipe for disaster to arbitrarily bash threads over the head when they're in the middle of something.


(This is perhaps a bit lowlevel, but at least it is a simple solution. As I don't know C#'s API, this is a general solution for any language using thread-pools.)

Insert a watchdog task after each real task that updates a time value with the current time. If this value is larger than you max task run time (say 10 seconds), you know that something is stuck.

Instead of setting a time and polling it, you could continuously set and reset some timers 10 secs into the future. When it triggers, a task has hung.

The best way is probably to wrap each task in a "Watchdog" Task class that does this automatically. That way, upon completion, you'd clear the timer, and you could also set a per-task timeout, which might be useful.

You obviously need one time/timer object for each thread in the threadpool, but that's solvable via thread-local variables.

Note that this solution does not require you to modify your tasks' code. It only modifies the code putting tasks into the pool.


One way is to use a watchdog timer (a solution usually done in hardware but applicable to software as well).

Have each thread set a thread-specific value to 1 at least once every five seconds (for example).

Then your watchdog timer wakes every ten seconds (again, this is an example figure only) and checks to ensure that all the values are 1. If they're not 1, then a thread has locked up.

The watchdog timer then sets them all to 0 and goes back to sleep for the next cycle.

Providing your worker threads are written in such a way so that they will be able to set the values in a timely manner under non-frozen conditions, this scheme will work okay.

The first thread that locks up will not set its value to 1, and this will be detected by the watchdog timer on the next cycle.


However, a better solution is to find out why the threads are freezing in the first place and fix that.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜