Re: All threads are busy

2008-11-25 Thread Rainer Frey
On Monday 24 November 2008 16:15:19 Martin Spinassi wrote: Hi to all again! Nov 24, 2008 1:51:54 PM org.apache.tomcat.util.threads.ThreadPool logFull SEVERE: All threads (200) are currently busy, waiting. Increase maxThreads (200) or check the servlet status Executor name=tomcatThreadPool

RE: All threads are busy

2008-11-25 Thread Caldarale, Charles R
From: Rainer Frey [mailto:[EMAIL PROTECTED] Subject: Re: All threads are busy Does the AJP connector support the executor? I thought not. The doc claims it does, but I haven't looked at the code to verify. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY

All threads are busy

2008-11-24 Thread Martin Spinassi
Hi to all again! I keep working on some performance on tomcat and apache, but there is something that I can't figure out. Using jmeter to do the tests, connecting to port 80 (tomcat), I get the next error at catalina.out: Nov 24, 2008 1:51:54 PM org.apache.tomcat.util.threads.ThreadPool

RE: All threads are busy

2008-11-24 Thread Caldarale, Charles R
From: Martin Spinassi [mailto:[EMAIL PROTECTED] Subject: All threads are busy Nov 24, 2008 1:51:54 PM org.apache.tomcat.util.threads.ThreadPool logFull SEVERE: All threads (200) are currently busy, waiting. Increase maxThreads (200) or check the servlet status And what does a thread dump

RE: All threads are busy

2008-11-24 Thread Martin Spinassi
On Mon, 2008-11-24 at 09:19 -0600, Caldarale, Charles R wrote: From: Martin Spinassi [mailto:[EMAIL PROTECTED] Subject: All threads are busy Nov 24, 2008 1:51:54 PM org.apache.tomcat.util.threads.ThreadPool logFull SEVERE: All threads (200) are currently busy, waiting. Increase

RE: All threads are busy

2008-11-24 Thread Caldarale, Charles R
From: Martin Spinassi [mailto:[EMAIL PROTECTED] Subject: RE: All threads are busy I should get the same errors using ports 80 or 8080, and I get completely different results. Connector executor= tomcatThreadPool port=8009 protocol=AJP/1.3 redirectPort=8443 / Just for grins, take out

RE: All threads are busy

2008-11-24 Thread Martin Spinassi
On Mon, 2008-11-24 at 09:33 -0600, Caldarale, Charles R wrote: From: Martin Spinassi [mailto:[EMAIL PROTECTED] Subject: RE: All threads are busy I should get the same errors using ports 80 or 8080, and I get completely different results. Connector executor= tomcatThreadPool port=8009

Re: FW: tomcat hangs with error msg-All Threads are Busy.....

2006-05-18 Thread David Delbecq
SIGQUIT to tomcat process, it will force the sun JVM to dump all threads stacks. Regards, David Delbecq Ajit Narayanan wrote: hi, My tomcat 4.1.27 is running on sun Solaris 8 box but ocassionally it hangs out giving the error All threads are busy, waiting. Please increase maxThreads

RE: FW: tomcat hangs with error msg-All Threads are Busy.....

2006-05-18 Thread Ajit Narayanan
leading to such a problem. Thanks and regards, Ajit. -Original Message- From: David Delbecq [mailto:[EMAIL PROTECTED] Sent: Thursday, May 18, 2006 1:32 PM To: Tomcat Users List Subject: Re: FW: tomcat hangs with error msg-All Threads are Busy. This most probably means

Re: FW: tomcat hangs with error msg-All Threads are Busy.....

2006-05-18 Thread David Delbecq
with error msg-All Threads are Busy. This most probably means there is deadlock somewhere in your webapplication, leading to HTTP threads not being released because they are stuck waiting for something before sending response to a user that dropped hours agos. To get clues on where your problem

RE: FW: tomcat hangs with error msg-All Threads are Busy.....

2006-05-18 Thread Ajit Narayanan
have happened under the conditions that you have mentioned . And the following message was found in the catalina.out log file: Dec 7, 2004 3:44:37 PM org.apache.tomcat.util.threads.ThreadPool logFull SEVERE: All threads are busy, waiting. Please increase maxThreads or check

Re: FW: tomcat hangs with error msg-All Threads are Busy.....

2006-05-18 Thread David Delbecq
that this could have happened under the conditions that you have mentioned . And the following message was found in the catalina.out log file: Dec 7, 2004 3:44:37 PM org.apache.tomcat.util.threads.ThreadPool logFull SEVERE: All threads are busy, waiting. Please increase maxThreads

Re: SEVERE: All threads are busy, waiting. Please increase maxThreads or check the servlet status75 75

2005-10-28 Thread Hassan Schroeder
Peter Kattare wrote: Does anyone know how to get rid of this message? SEVERE: All threads are busy, waiting. Please increase maxThreads or check the servlet status75 75 Sure, find out what they're waiting for :-) Double check your code for unclosed DB connections, etc. If you have a dev