I wanted to know how many simultaneous requests a web application built using a servlet can handle (using Tomcat 7). I have configured maxThreads, acceptCount, minSpareThreads attributes of server.xml file.
My question is: Do we have to take the underlying OS into consideration as well?
For example:
maxThreads= 5;
acceptCount= 1;
OS= 1 processor with 4 cores;
So at maximum 4 requests can be handled simultaneously with 1 request waiting? Assuming that each request will take some-time to complete. Do we also have to take into consideration hyperthreading?
Good Question, but there is no straight answer. You need to tweek the server parameters yourself and test it against the load.
Few question that arises my mind.
1.) How much
time
does each request takes to process.2.) How many threads are being used/configured in
thread pool
.3.) How many
server connections
have been configured.OS, server will not play much bigger role in this. Once you are done setting parameters, pushing them to there limits, then we might even to think of hardware.
From stats/blogs