I may be missing something here, but for my AJP13 connection, the number
of simultaneous requests looks not dependent on maxProcessors attribute
rather on the MaxThreads.
Here is the relevant snippet from my server.xml
A)
B)
And here is relevant apache config (worker MPM)
ServerLimit
Since MaxClients is so big, I'm assuming that you have a pre-fork MPM
Apache.
In this case, you are strongly recommended to have maxProcessors >=
MaxClients, since each client will have it's own connection to a processor.
If you include something like connectionTimeout="6", then the Tomcat
Hi!
I am reviewing my apache-tomcat configuraction, trying to tunning the
performance.
I use AJP/1.3 connector between apache and tomcat 5.0.28.
I have the default value for maxProcessors attibute (20). In apache I have
maxclients to 150 value. Does someone know how works it exactly? One pr