开发者

WAS threads are getting hung

I am facing an issue that WAS threads are getting hun开发者_Go百科g.

Configurations:

OS: AIX,

WAS: 6.1.0.31

com.ibm.websphere.threadmonitor.interval: 180 seconds

com.ibm.websphere.threadmonitor.threshold: 10 minutes

com.ibm.websphere.threadmonitor.false.alarm.threshold: 100

Above settings are for hung detection.

Is there any way that I can clean up the hung threads ?

Thanks in advance.


No. WAS doesn't provide mechanism for that. What you see is a watchdog mechanism that provides merely notifications. You are supposed to actually fix the underlying problem why the threads get hung in the first place. To get started with that issue

kill -3 <pid>

and read the stack traces. It is likely that after a few you will start seeing a pattern and then you have to read the source code for your applications to understand what really went wrong and how to fix it.


As far as I know it is Java that does not allow to kill a thread which is hung. The best thing is to avoid hanging threads by hunting down the cause. Like already mentioned in the other answer, try to force the application server to create a thread dump (aka Java Core) and analyze its content. On Linux/UNIX systems a

kill -3 <pid>

will do the job. You'll find free graphical tools in the internet to look into these dumps. I typically use one which is called IBM Thread and Monitor Dump Analyzer for Java. The WebSphere Application Server log file will tell you the thread name to look for.


You have tool to interpret. I have not used it in production though (never had that requirement, we go for a clean restart). You can check this out though. It uses bytecode instrumentation.

http://www.ibm.com/developerworks/websphere/downloads/hungthread.html

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜