<div dir="ltr">I was just running some workload through an application on a test environment.  For some reason, I had a run of very short application run times and pauses, as shown in this GC snippet.  The young generation and old generation both had low occupancy rates right before this occurred.  After this log output, the next GC showed Eden at 99% full, which was then collected in under a second.    I'm kinda perplexed as to what is going on when this occurred as there isn't any GC related information output during this time.  When the workload began against the application a bunch of threads became active doing work, but I don't believe they were creating excessive amounts of garbage.<br>
<br><br>Total time for which application threads were stopped: 0.2914130 seconds<br>Application time: 2.0577050 seconds<br>Total time for which application threads were stopped: 0.0234770 seconds<br>Application time: 0.0021460 seconds<br>
Total time for which application threads were stopped: 0.0316840 seconds<br>Application time: 0.0016000 seconds<br>Total time for which application threads were stopped: 0.0218700 seconds<br>Application time: 0.1401370 seconds<br>
Total time for which application threads were stopped: 0.0401360 seconds<br>Application time: 0.0007750 seconds<br>Total time for which application threads were stopped: 0.0235050 seconds<br>Application time: 0.0018830 seconds<br>
Total time for which application threads were stopped: 0.0327830 seconds<br>Application time: 0.0010240 seconds<br>Total time for which application threads were stopped: 0.0218930 seconds<br>Application time: 0.0008780 seconds<br>
Total time for which application threads were stopped: 0.0375390 seconds<br>Application time: 0.0006810 seconds<br>Total time for which application threads were stopped: 0.0212840 seconds<br>Application time: 0.0010380 seconds<br>
Total time for which application threads were stopped: 0.0314600 seconds<br>Application time: 0.0007640 seconds<br><br><br>Attached is the zipped up GC log.  Here are my GC arguments:<br><br>/usr/java/jdk1.5.0_12/bin/java -Dprogram.name=run.sh -server -Xms4096m -Xmx4096m -XX:NewSize=1228M -XX:MaxNewSize=1228M -XX:MaxTenuringThreshold=4 -XX:SurvivorRatio=6 -XX:+ScavengeBeforeFullGC -XX:PermSize=256M -XX:MaxPermSize=256M -XX:+HandlePromotionFailure -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:ParallelGCThreads=3 -XX:+CMSParallelRemarkEnabled -XX:+CMSClassUnloadingEnabled -XX:+CMSPermGenSweepingEnabled -verbosegc -XX:+DisableExplicitGC -XX:+PrintTenuringDistribution -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintHeapAtGC -XX:+PrintGCApplicationConcurrentTime -XX:+PrintGCApplicationStoppedTime -XX:+PrintClassHistogram -Xloggc:/var/log/jboss/gc.dat -Dsun.net.client.defaultConnectTimeout=10000 <br>
</div>