Re: tomcat incoming requests and thread usage

2007-09-16 Thread Waseem Azhar
How do I take a thread dump ? Are you talking about the heap snapshot/dump ?? Thanks, -Azhar On 9/15/07, Bill Barker <[EMAIL PROTECTED]> wrote: > > "Waseem Azhar" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Hi, > > > > Could sombody tell me how tomcat release/reclaim it thr

Re: tomcat incoming requests and thread usage

2007-09-14 Thread Bill Barker
"Waseem Azhar" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > Could sombody tell me how tomcat release/reclaim it threads after serving > request. I have a situation where i have no activity going on in my webapp > but still thread usage is 61 with status (service/stage). I

Re: tomcat incoming requests and thread usage

2007-09-14 Thread Manivannan Palanichamy
Its hard to say servlet threads return to pool, as soon as its done with the response. many things would go in between, as Caldarale said. u can try with few threads and really trace whats going with the service method. make sure, the last line of service method is reached -- at least u can be sure

RE: tomcat incoming requests and thread usage

2007-09-14 Thread Caldarale, Charles R
> From: Waseem Azhar [mailto:[EMAIL PROTECTED] > Subject: tomcat incoming requests and thread usage > > Could sombody tell me how tomcat release/reclaim it threads > after serving request. Threads return to the pool when the servlet/filter chain does its return. If threads are still busy, it's