> From: Michele Mase' [mailto:[EMAIL PROTECTED] > Subject: Increase maxThreads not work windows env. > > 25-giu-2008 16.59.38 org.apache.tomcat.util.threads.ThreadPool logFull > GRAVE: All threads (200) are currently busy, waiting. > Increase maxThreads (200) or check the servlet status
Your threads are not returning to the pool, thereby making it impossible to process additional requests. This is a problem in your webapp. Frequently, it's because database connections are not released, so threads pile up waiting to obtain a database connection. Take a thread dump to find out where they're stuck. (You might want to reduce the number of threads in the configuration first to avoid being overwhelmed by stack traces.) - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]