On 1/30/2013 2:29 PM,
wrote:
> Thanks a lot to all of your insight. I do not see any separate java
> process for my "application". I only see tomcata6.exe which shows
> many threads, so I assuming my "application" is multi-theraded and
> more CPU's should help!!!
It is correct that it is a single process with multiple threads.
Performance will be improved by adding more CPU's *if* the application
is CPU bound.
If you are currently using 10% of available CPU power, because all
threads are waiting for the database, then adding more CPU's will
not help.
If you are using 100% of available CPU power and the threads are
waiting to get the CPU, then adding more CPU's should help.
Arne