<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style id="owaParaStyle">P {
        MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px
}
</style>
</head>
<body fPStyle="1" ocsi="0">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">
<p>Hi Nobuhiko,</p>
<p>&nbsp;</p>
<p>&gt;Has anybody found successful test case in G1GC compared to CMS?</p>
<p>Just two/three days ago I have reported&nbsp; an example of a portal application on this list. Subject was &quot;Good G1 result&quot;. I have also extensively tested the same portal using ParallelGC and CMS.</p>
<p>&nbsp;</p>
<p>Let me just summarize the Pros and Cons of these 3 algorithms:</p>
<p>&nbsp;</p>
<p>1.ParallelGC</p>
<p>Pros:</p>
<p>- very good throughput (98,7%)</p>
<p>- young gen pauses are very short (&lt;100ms)</p>
<p>- it is possible (with&nbsp;my application!) to make Full GC pauses very infrequent by proper generation sizing</p>
<p>- long term stability (days during loadtest ~ weeks in production) is very good</p>
<p>Cons:</p>
<p>- Full GC pauses are long (5s on hardware with low single-thread-performance) and will get worse when we are forced to grow the heap size of now only 1 GB</p>
<p>- to make generation sizing work you have to switch off adaptive sizing (-XX:-UseAdaptiveSizePolicy, this is a small con compared to ParNewGC which is in other respects just as good as ParallelGC)</p>
<p>&nbsp;</p>
<p>2. CMS</p>
<p>Pros: </p>
<p>- throughput is almost as good as with ParallelGC</p>
<p>- young gen pauses are&nbsp;more&nbsp;or less&nbsp;as short as with ParallelGC if you apply the same generation sizing (this is actually a feature of ParNewGC running by default with CMS)</p>
<p>- CMS runs are as infrequent as Full GC runs with ParallelGC if you apply the same gen sizing</p>
<p>- CMS pauses (initial mark and remark) were always below 1s (100-800 millis)</p>
<p>Cons:</p>
<p>- I ran into very bad heap fragmentation after 1 day of full load with only 1 GB of heap and untuned gen sizes (promotion rate was too high). I solved that but do not know at what timescale such problems could reappear in production (risk remains!)</p>
<p>- I had to increase&nbsp;heap size&nbsp;from 1GB to 1.5 GB to solve&nbsp;the fragmentation issue</p>
<p>&nbsp;</p>
<p>3. G1</p>
<p>Pros:</p>
<p>- the longest pauses were&nbsp;no longer than the&nbsp;CMS pauses</p>
<p>- long term stability was as good as with CMS once I did the configuration properly as suggested on this list (do not set new gen and survivor sizes!)</p>
<p>- lowest footprint: same 1GB heap size as with ParallelGC was by far enough, even less should work well</p>
<p>- stability&nbsp;seems much better now than it was in the early days of CMS (Java 1.4.2/1.5 some years ago with lots of very bad&nbsp;memory violation failures!)</p>
<p>Cons:</p>
<p>- average pause times (200-500ms depending on your target) are much longer than with either ParallelGC and CMS because there is basically only one&nbsp;breed of pauses. If you reduce the duration of these pauses you increase the GC overhead (see below)</p>
<p>- throughput was much lower (93%)</p>
<p>- much higher GC overhead&nbsp;means that G1 does not&nbsp; work&nbsp;well when the garbage rate increases far beyond the 50-60 MB/s I had in the test (while ParallelGC/CMS in peak situations of other tests cleaned up to 420 MB/s. With other applications on other hardware
 I have even seen ParallelGC/CMS cleaning 1GB/s in a stable and efficient way)</p>
<p>- G1 is not&nbsp;usable on JDK6 and therefore on older appservers like OC4J</p>
<p>&nbsp;</p>
<p>Conclusion:</p>
<p>1.)&nbsp;with heap sizes up to 1-2 GB I stick with ParallelGC because it is the most robust and efficient algorithm and rare (once every hour or few hours) Full GC pauses are acceptable.</p>
<p>2.) with larger productive heaps at the moment I look&nbsp;at CMS and manage the fragmentation issue by proper tuning, intensive testing and close production monitoring</p>
<p>3.) I have an eye on G1 because it seems to live up to its promises and may be able to replace CMS in the next years.
</p>
<p>&nbsp;</p>
<p>Best regards</p>
<p>Andreas</p>
<p>&nbsp;</p>
</div>
</body>
</html>