> From: m zyzy [mailto:myz...@gmail.com]
> Subject: Re: tomcat maximum thread settings
> 
> can I increase the maximum threads value from 200 to something 
> larger like perhaps 400 or 500 for each webapp ?

The maxThreads value is for a <Connector> (or perhaps executor, if you're using 
that), not a webapp.  How large you can make it depends on the platform and JVM 
you're running on.  More threads require more Java heap and more process space; 
adding threads won't help if the requests bottleneck somewhere in your webapp, 
such as when making database requests.

You can't meaningfully tune something until you measure it under the expected 
load.

 - 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to