I am looking for a little bit of guidance in trying to diagnose a GC related issue.

We are testing on Solaris with WebSphere Portal and my current environment has a Garbage Collection Overhead of 7% (This was calculated with verbose GC and running the log through PMAT) I am supposed to compare this value with another environment which is running at an avg of 4.5%. The env are on the exact same version of WebSphere Portal, same JVM sizes,parameters,custom varibles,etc. My JVMs had 20 more Allocation Failures, 2 more full GC's, a 2 sec higher mean pause time during GCs than their environment during a 1 hr performance testing period.

Can you give me any advice on what could be causing this issue with all the same configuration values and the same exact 1 hr performance test? Or anything else to review?

Thanks

link|improve this question

59% accept rate
Are these two machines running in a 100% fair load balancing environment? Same virtual machines and same hardware? – Maurício Linhares Jul 25 '11 at 22:05
Yes, they are running in a 100% fair load balancing environment. Same hardware, non-virtualized. I actually found a pretty big difference, when they ran their test they had JVM settings which included: -XX:ParallelGCThreads=32 they then changed this to -XX:ParallelGCThreads=8 at a later time. We set our env equal to 8 to match their environment not knowing it was set to 32 during the test that we were comparing to. Could this alone explain the difference? – roacha Jul 25 '11 at 23:24
Frankly, 7% overhead is damn low. (Though of course the Sun JVM seriously understates GC overhead, but that's another matter.) – Hot Licks Jul 25 '11 at 23:28
Thanks Daniel, I agree with you but mgmt is asking why is it 2% above the other environment numbers. I also confirmed that the server has 32 cpus so by setting our env XX:ParallelGCThreads=8 might explain the difference vs their env that was set to XX:ParallelGCThreads=32. Anyone think that could cause the extra 2% overhead? – roacha Jul 26 '11 at 0:43
Possibly, as you would be using less cores to perform GC. – Maurício Linhares Jul 26 '11 at 3:43
show 5 more comments
feedback

2 Answers

The first thing I'd check is whether the process is ever being pushed into swap / "virtual" memory. This would have a significant impact on your GC overhead.

With identical Java configurations and load etc., the most obviously difference would be the amount of physical RAM on each machine. Assuming they're the same, see what other processes / services are running on each machine - unless they're both fresh installs of the same OS, I'd expect there to be some (potentially significant) differences.

Post the output from top and iostat (or your preferred tools) and we'll see if there's anything obvious.

link|improve this answer
feedback

If you are running different Operating systems it's possible that they perform differently with same settings. The optimal GC settings and threadpool-sizes might be different. I remember that at least in Solaris vs RedHat case the optimal concurrency-settings were clearly different.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.