Weblogic Threads Usage
Posted
by
Hila
on Server Fault
See other posts from Server Fault
or by Hila
Published on 2010-11-23T18:36:49Z
Indexed on
2011/01/13
4:55 UTC
Read the original article
Hit count: 266
I have an application deployed on WebLogic 10.3, which exhibits a strange behavior.
- I am running a constant (not too high) load on my application (20 concurrent users, running a light activity).
- The response time is reasonable (well below 100ms after the application stabilizes)
- Memory consumption seems fine (My application creates a lot of short-living objects, but they are garbaged collected so the overall memory consumption stays under 500 mb).
- Threads stats seem healthy as well:
And yet, after I leave my test running for a while, more and more execute threads ("[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'") are created, until eventually the application crashes:
This test hasn't been running for a long time (All the new threads that you don't see in the first screenshot were created while I was writing this question), and I've seen much more threads being created.
Any idea why these threads are being created?
© Server Fault or respective owner