I'm running some performance tests to determine response times and ability to handle concurrency with various cpu / ram / os configurations. One interesting find I've run into, is that, it looks like a single jvm performs better with 4 cores than it does with 2 cores (no surprise there), but adding more cores beyond the 4th core does not result in any significant improvements. But then, adding another jvm instance with a load balancer (same hardware) resulted in a dramatic improvement.
It looks like an individual process is limited in the number of cores it can utilize, perhaps due to a limitation on the number of os threads a process can spawn at a time. This is a 64 bit environment.
Im using tomcat and tried changing the "maxThreads" attribute but that didn't make a difference for the amount of concurrency Im looking to handle.
Any other reason this could be explained?