<!-- This file has been automatically generated. See web/README.md -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body>
<div id="compose-container" style="direction: ltr" itemscope="" itemtype="https://schema.org/EmailMessage">
<span itemprop="creator" itemscope="" itemtype="https://schema.org/Organization"><span itemprop="name" content="Outlook Mobile for iOS"></span></span>
<div>
<div style="direction: ltr;">Looking at used memory like this is a bit problematic, since the Java Heap tends to hold on memory - and only when the GC runs and tries to free memory it is known how the real memory is used. In case of CMS the collection is triggered
 regularly in the background. This is why the used memory metric is not that bad. However with G1 (and even worse with throughput collector) you often see a larger usage than actual referenced memory. (This is a bit an oversimplification as it does not address
 soft references)</div>
<div><br>
</div>
<div style="direction: ltr;">What I typically recommend is to not look at the used memory metric at fixed intervals but wait for a Gc event and look at the 'usage after gc'. This also has problems (gives you the usage late) but it will avoid the false positive
 you have observed.</div>
<div><br>
</div>
<div class="acompli_signature">Gruss<br>
Bernd<br>
-- <br>
<a dir="ltr" href="http://bernd.eckenfels.net" x-apple-data-detectors="true" x-apple-data-detectors-type="link" x-apple-data-detectors-result="0">http://bernd.eckenfels.net</a></div>
<div class="gmail_quote">_____________________________<br>
From: Sundara Mohan M <<a dir="ltr" href="mailto:email.sundarms@gmail.com" x-apple-data-detectors="true" x-apple-data-detectors-type="link" x-apple-data-detectors-result="1">email.sundarms@gmail.com</a>><br>
Sent: Freitag, Juni 23, 2017 12:23 AM<br>
Subject: Re: G1OldCSetRegionThresholdPercent under ExperimentalFlag<br>
To: Thomas Schatzl <<a dir="ltr" href="mailto:thomas.schatzl@oracle.com" x-apple-data-detectors="true" x-apple-data-detectors-type="link" x-apple-data-detectors-result="2">thomas.schatzl@oracle.com</a>><br>
Cc: <<a dir="ltr" href="mailto:hotspot-gc-dev@openjdk.java.net" x-apple-data-detectors="true" x-apple-data-detectors-type="link" x-apple-data-detectors-result="3">hotspot-gc-dev@openjdk.java.net</a>><br>
<br>
<br>
Thanks for the insights on Ergo.<br>
<br>
I was trying to migrate from CMS to G1GC, the app has a low memory<br>
handler ( the thread which finds memory utilization from<br>
Runtime.getFreememory and removes some data from in memory if it<br>
exceeds the threshold).<br>
<br>
In CMS this handler was not invoked frequently (for ex: When I have<br>
60K objects it will kick in remove ~5K LRU objects and continue<br>
regular operation) when i moved to G1GC this handler started kicking<br>
in frequently(ex: When i have 60K object it will remove 5K LRU objects<br>
and immediately after some time it will kick in and remove another 5K<br>
and goes till 10K objects are left).<br>
<br>
So, i was trying to find out why did mixed GC doesn't cleanup quick<br>
enough before my low memory handler kicks in.<br>
<br>
Though i see number of young gen collection and time taken to clean<br>
has came down by ~40%.<br>
<br>
Another issue (may be this is expected) is after increasing<br>
G1OldCSetRegionThresholdPercent to 20% from 10% i am started seeing<br>
few mixed GC taking 1s (most of the time is spent on UpdateRS,<br>
MaxPause=500ms). Will get back once i have more understanding on what<br>
is happening..<br>
<br>
Thanks,<br>
Sundar<br>
<br>
On Thu, Jun 22, 2017 at 2:16 PM, Thomas Schatzl<br>
<<a dir="ltr" href="mailto:thomas.schatzl@oracle.com" x-apple-data-detectors="true" x-apple-data-detectors-type="link" x-apple-data-detectors-result="4">thomas.schatzl@oracle.com</a>> wrote:<br>
> Hi Sundara,<br>
><br>
> On Thu, 2017-06-22 at 09:49 -0700, Sundara Mohan M wrote:<br>
>> Hi Thomas,<br>
>> Thanks for the explanation.<br>
>><br>
>><br>
>> I was trying to debug why it is not including some old region even<br>
>> though it had ~100ms (though Ergo logs say it has accommodated all<br>
>> regions to cover given 500ms).<br>
><br>
> Ergo is self-training, but it takes some time to adapt to the<br>
> situation.<br>
><br>
> As long running a run that log shows (thanks!), the number of mixed gcs<br>
> is relatively small, and they are pretty far apart (in the range of<br>
> hours between mixed gc phases). Young gc occurrences distribution is<br>
> far from equal (even considering differences in used young gen size),<br>
> so it seems that the application is quite bursty from time to time.<br>
><br>
> The different mixed gc/old gen space reclamation phases are never<br>
> particularly long either, so my best guess would be that the values<br>
> used for how long particular regions take to evacuate are messed up.<br>
><br>
> I.e. from some graphs it roughly looks like is that there is roughly a<br>
> mixed gc phase at the start of every bursty phase (as far as I could<br>
> identify them looking at graphs), and one during the phase, typically<br>
> near the end.<br>
><br>
> So depending on when that mixed gc occurs (at the start of such a burst<br>
> or within), g1 trains itself on different application behavior that it<br>
> later uses these values on. This is always some kind of moving average,<br>
> which does not necessarily reflect reality.<br>
><br>
> Very good adaptation to this behavior seems beyond what g1 can do at the moment.<br>
><br>
> One could in theory force G1 to give much more weight to recent observations to make adaptations quicker (i.e. change some factors in that average calculation); but there is no user option for that, and it may open a separate can of worms (currently it seems
 to not too eagerly discount older observations compared to more recent ones if I read the code correctly).<br>
><br>
> But that is just something I made up right now by staring at your log<br>
> graphs, I may be wrong :)<br>
><br>
> It is unfortunately impossible to determine the exact values for these<br>
> predictions in a product VM (e.g. comparing actual/predicted detail<br>
> values the per-region prediction is made of) at this time as there is<br>
> no way to get these relevant values out of the VM.<br>
><br>
> Back to your problem (if there is one, you did not state any ;)): the<br>
> log shows a few issues with mixed gc actually: the one you explained<br>
> about not taking enough old gen regions because<br>
> the G1OldCSetRegionThresholdPercent is too low as you suspected (still<br>
> not reaching max pause time; case 1), and the cases where the number of<br>
> old gen regions taken is too low so these are filled up with "expensive<br>
> old gen regions". However I am seeing both the actual time taken being<br>
> too low and too high (case 2 and 3)<br>
><br>
> Not sure what your goals are here, and what the actual issue is, but<br>
><br>
> - you can probably fix case 1 with increasing the mentioned<br>
> -XX:G1OldCSetRegionThresholdPercent option if that behavior annoys you.<br>
><br>
> - fix either case 2 or case 3 with decreasing or increasing<br>
> -XX:G1MixedGCCountTarget (one direction increases the minimum number of<br>
> regions to take, the other decreases it).<br>
><br>
> All in all an interesting case to look at :)<br>
><br>
> Thanks a lot,<br>
> Thomas<br>
><br>
>> Adding some log snippets here and attaching entire logs in case if<br>
>> that helps.<br>
>><br>
>> Running app with 31G<br>
>><br>
>> CommandLine flags: -XX:GCLogFileSize=20971520<br>
>> -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=out-of-memory-heap-<br>
>> dump -XX:InitialHeapSize=33285996544 -XX:MaxGCPauseMillis=500<br>
>> -XX:MaxHeapSize=33285996544 -XX:MetaspaceSize=536870912<br>
>> -XX:NumberOfGCLogFiles=20 -XX:+ParallelRefProcEnabled<br>
>> -XX:+PrintAdaptiveSizePolicy -XX:+PrintGC<br>
>> -XX:+PrintGCApplicationStoppedTime -XX:+PrintGCDateStamps<br>
>> -XX:+PrintGCDetails -XX:+PrintGCTimeStamps<br>
>> -XX:+PrintTenuringDistribution -XX:+UseCompressedClassPointers<br>
>> -XX:+UseCompressedOops -XX:+UseG1GC -XX:+UseGCLogFileRotation<br>
>> -XX:+UseStringDeduplication<br>
>><br>
>> ...<br>
>> 2017-06-19T22:54:05.488+0000: 9345.322: [GC pause (G1 Evacuation<br>
>> Pause) (mixed)<br>
>> Desired survivor size 104857600 bytes, new threshold 1 (max 15)<br>
>> - age 1: 131296848 bytes, 131296848 total<br>
>> - age 2: 237559952 bytes, 368856800 total<br>
>> - age 3: 137259376 bytes, 506116176 total<br>
>> 9345.322: [G1Ergonomics (CSet Construction) start choosing CSet,<br>
>> _pending_cards: 130042, predicted base time: 171.58 ms, remaining<br>
>> time: 328.42 ms, target pause time: 500.00 ms]<br>
>> 9345.322: [G1Ergonomics (CSet Construction) add young regions to<br>
>> CSet, eden: 121 regions, survivors: 77 regions, predicted young<br>
>> region time: 249.33 ms]<br>
>> 9345.322: [G1Ergonomics (CSet Construction) finish adding old<br>
>> regions to CSet, reason: predicted time is too high, predicted time:<br>
>> 0.44 ms, remaining time: 0.00 ms, old: 204 regions, min: 204 regions]<br>
>> 9345.322: [G1Ergonomics (CSet Construction) added expensive regions<br>
>> to CSet, reason: old CSet region num not reached min, old: 204<br>
>> regions, expensive: 11 regions, min: 204 regions, remaining time:<br>
>> 0.00 ms]<br>
>> 9345.322: [G1Ergonomics (CSet Construction) finish choosing CSet,<br>
>> eden: 121 regions, survivors: 77 regions, old: 204 regions, predicted<br>
>> pause time: 504.35 ms, target pause time: 500.00 ms]<br>
>> 9345.691: [G1Ergonomics (Mixed GCs) continue mixed GCs, reason:<br>
>> candidate old regions available, candidate old regions: 1425 regions,<br>
>> reclaimable: 11364516952 bytes (34.14 %), threshold: 5.00 %]<br>
>> , 0.3691404 secs]<br>
>> [Parallel Time: 301.4 ms, GC Workers: 13]<br>
>> [GC Worker Start (ms): Min: 9345323.0, Avg: 9345323.3, Max:<br>
>> 9345323.6, Diff: 0.6]<br>
>> [Ext Root Scanning (ms): Min: 0.9, Avg: 1.2, Max: 1.6, Diff:<br>
>> 0.6, Sum: 15.9]<br>
>> [Update RS (ms): Min: 62.1, Avg: 62.3, Max: 63.0, Diff: 0.9,<br>
>> Sum: 809.4]<br>
>> [Processed Buffers: Min: 35, Avg: 51.8, Max: 91, Diff: 56,<br>
>> Sum: 674]<br>
>> [Scan RS (ms): Min: 11.3, Avg: 12.1, Max: 14.8, Diff: 3.6, Sum:<br>
>> 157.5]<br>
>> [Code Root Scanning (ms): Min: 0.0, Avg: 0.0, Max: 0.0, Diff:<br>
>> 0.0, Sum: 0.1]<br>
>> [Object Copy (ms): Min: 222.2, Avg: 224.8, Max: 225.3, Diff:<br>
>> 3.1, Sum: 2922.8]<br>
>> [Termination (ms): Min: 0.0, Avg: 0.0, Max: 0.1, Diff: 0.1,<br>
>> Sum: 0.4]<br>
>> [Termination Attempts: Min: 1, Avg: 15.6, Max: 24, Diff: 23,<br>
>> Sum: 203]<br>
>> [GC Worker Other (ms): Min: 0.0, Avg: 0.1, Max: 0.2, Diff: 0.2,<br>
>> Sum: 1.1]<br>
>> [GC Worker Total (ms): Min: 300.3, Avg: 300.6, Max: 300.8,<br>
>> Diff: 0.5, Sum: 3907.2]<br>
>> [GC Worker End (ms): Min: 9345623.8, Avg: 9345623.9, Max:<br>
>> 9345624.0, Diff: 0.2]<br>
>> [Code Root Fixup: 0.1 ms]<br>
>> [Code Root Purge: 0.0 ms]<br>
>> [String Dedup Fixup: 43.9 ms, GC Workers: 13]<br>
>> [Queue Fixup (ms): Min: 0.4, Avg: 2.2, Max: 3.7, Diff: 3.3,<br>
>> Sum: 28.6]<br>
>> [Table Fixup (ms): Min: 39.8, Avg: 41.2, Max: 42.9, Diff: 3.2,<br>
>> Sum: 535.8]<br>
>> [Clear CT: 3.4 ms]<br>
>> [Other: 20.2 ms]<br>
>> [Choose CSet: 0.3 ms]<br>
>> [Ref Proc: 13.4 ms]<br>
>> [Ref Enq: 1.0 ms]<br>
>> [Redirty Cards: 2.0 ms]<br>
>> [Humongous Register: 0.2 ms]<br>
>> [Humongous Reclaim: 0.1 ms]<br>
>> [Free CSet: 2.1 ms]<br>
>> [Eden: 968.0M(968.0M)->0.0B(1472.0M) Survivors: 616.0M->112.0M<br>
>> Heap: 15.6G(31.0G)->13.1G(31.0G)]<br>
>> [Times: user=4.53 sys=0.00, real=0.36 secs]<br>
>> ....<br>
>> 2017-06-19T22:54:47.655+0000: 9387.489: [GC pause (G1 Evacuation<br>
>> Pause) (mixed)<br>
>> Desired survivor size 104857600 bytes, new threshold 15 (max 15)<br>
>> - age 1: 31749256 bytes, 31749256 total<br>
>> 9387.489: [G1Ergonomics (CSet Construction) start choosing CSet,<br>
>> _pending_cards: 127449, predicted base time: 168.88 ms, remaining<br>
>> time: 331.12 ms, target pause time: 500.00 ms]<br>
>> 9387.489: [G1Ergonomics (CSet Construction) add young regions to<br>
>> CSet, eden: 184 regions, survivors: 14 regions, predicted young<br>
>> region time: 62.79 ms]<br>
>> 9387.490: [G1Ergonomics (CSet Construction) finish adding old<br>
>> regions to CSet, reason: old CSet region num reached max, old: 397<br>
>> regions, max: 397 regions]<br>
>> 9387.490: [G1Ergonomics (CSet Construction) finish choosing CSet,<br>
>> eden: 184 regions, survivors: 14 regions, old: 397 regions, predicted<br>
>> pause time: 390.18 ms, target pause time: 500.00 ms]<br>
>> 9387.659: [G1Ergonomics (Mixed GCs) continue mixed GCs, reason:<br>
>> candidate old regions available, candidate old regions: 1028 regions,<br>
>> reclaimable: 8047410104 bytes (24.18 %), threshold: 5.00 %]<br>
>> , 0.1700662 secs]<br>
>> [Parallel Time: 101.4 ms, GC Workers: 13]<br>
>> [GC Worker Start (ms): Min: 9387490.4, Avg: 9387490.8, Max:<br>
>> 9387491.1, Diff: 0.6]<br>
>> [Ext Root Scanning (ms): Min: 0.7, Avg: 1.1, Max: 1.6, Diff:<br>
>> 0.9, Sum: 14.3]<br>
>> [Update RS (ms): Min: 27.0, Avg: 27.8, Max: 28.9, Diff: 1.8,<br>
>> Sum: 361.9]<br>
>> [Processed Buffers: Min: 34, Avg: 51.4, Max: 88, Diff: 54,<br>
>> Sum: 668]<br>
>> [Scan RS (ms): Min: 25.8, Avg: 27.1, Max: 27.4, Diff: 1.6, Sum:<br>
>> 352.2]<br>
>> [Code Root Scanning (ms): Min: 0.0, Avg: 0.1, Max: 0.2, Diff:<br>
>> 0.2, Sum: 0.7]<br>
>> [Object Copy (ms): Min: 42.8, Avg: 43.8, Max: 44.5, Diff: 1.8,<br>
>> Sum: 569.9]<br>
>> [Termination (ms): Min: 0.0, Avg: 0.0, Max: 0.0, Diff: 0.0,<br>
>> Sum: 0.1]<br>
>> [Termination Attempts: Min: 1, Avg: 9.5, Max: 14, Diff: 13,<br>
>> Sum: 124]<br>
>> [GC Worker Other (ms): Min: 0.0, Avg: 0.2, Max: 0.4, Diff: 0.4,<br>
>> Sum: 2.3]<br>
>> [GC Worker Total (ms): Min: 99.7, Avg: 100.1, Max: 100.6, Diff:<br>
>> 0.9, Sum: 1301.4]<br>
>> [GC Worker End (ms): Min: 9387590.7, Avg: 9387590.9, Max:<br>
>> 9387591.1, Diff: 0.4]<br>
>> [Code Root Fixup: 0.3 ms]<br>
>> [Code Root Purge: 0.0 ms]<br>
>> [String Dedup Fixup: 43.5 ms, GC Workers: 13]<br>
>> [Queue Fixup (ms): Min: 0.0, Avg: 0.0, Max: 0.0, Diff: 0.0,<br>
>> Sum: 0.0]<br>
>> [Table Fixup (ms): Min: 43.0, Avg: 43.2, Max: 43.4, Diff: 0.3,<br>
>> Sum: 561.3]<br>
>> [Clear CT: 3.9 ms]<br>
>> [Other: 21.1 ms]<br>
>> [Choose CSet: 0.8 ms]<br>
>> [Ref Proc: 12.8 ms]<br>
>> [Ref Enq: 0.9 ms]<br>
>> [Redirty Cards: 0.9 ms]<br>
>> [Humongous Register: 0.2 ms]<br>
>> [Humongous Reclaim: 0.1 ms]<br>
>> [Free CSet: 4.2 ms]<br>
>> [Eden: 1472.0M(1472.0M)->0.0B(1424.0M) Survivors: 112.0M->160.0M<br>
>> Heap: 14.5G(31.0G)->10.1G(31.0G)]<br>
>> [Times: user=1.93 sys=0.00, real=0.17 secs]<br>
>> .....<br>
>> 2017-06-19T22:55:29.656+0000: 9429.490: [GC pause (G1 Evacuation<br>
>> Pause) (mixed)<br>
>> Desired survivor size 104857600 bytes, new threshold 15 (max 15)<br>
>> - age 1: 44204040 bytes, 44204040 total<br>
>> - age 2: 31422896 bytes, 75626936 total<br>
>> 9429.490: [G1Ergonomics (CSet Construction) start choosing CSet,<br>
>> _pending_cards: 64391, predicted base time: 130.82 ms, remaining<br>
>> time: 369.18 ms, target pause time: 500.00 ms]<br>
>> 9429.490: [G1Ergonomics (CSet Construction) add young regions to<br>
>> CSet, eden: 178 regions, survivors: 20 regions, predicted young<br>
>> region time: 69.26 ms]<br>
>> 9429.491: [G1Ergonomics (CSet Construction) finish adding old<br>
>> regions to CSet, reason: predicted time is too high, predicted time:<br>
>> 2.12 ms, remaining time: 0.00 ms, old: 204 regions, min: 204 regions]<br>
>> 9429.491: [G1Ergonomics (CSet Construction) added expensive regions<br>
>> to CSet, reason: old CSet region num not reached min, old: 204<br>
>> regions, expensive: 72 regions, min: 204 regions, remaining time:<br>
>> 0.00 ms]<br>
>> 9429.491: [G1Ergonomics (CSet Construction) finish choosing CSet,<br>
>> eden: 178 regions, survivors: 20 regions, old: 204 regions, predicted<br>
>> pause time: 684.25 ms, target pause time: 500.00 ms]<br>
>> 9429.663: [G1Ergonomics (Mixed GCs) continue mixed GCs, reason:<br>
>> candidate old regions available, candidate old regions: 824 regions,<br>
>> reclaimable: 6351099672 bytes (19.08 %), threshold: 5.00 %]<br>
>> , 0.1729571 secs]<br>
>> [Parallel Time: 102.6 ms, GC Workers: 13]<br>
>> [GC Worker Start (ms): Min: 9429491.3, Avg: 9429491.6, Max:<br>
>> 9429491.9, Diff: 0.6]<br>
>> [Ext Root Scanning (ms): Min: 0.9, Avg: 1.3, Max: 1.8, Diff:<br>
>> 0.9, Sum: 16.9]<br>
>> [Update RS (ms): Min: 18.7, Avg: 19.1, Max: 20.9, Diff: 2.2,<br>
>> Sum: 248.9]<br>
>> [Processed Buffers: Min: 18, Avg: 32.6, Max: 58, Diff: 40,<br>
>> Sum: 424]<br>
>> [Scan RS (ms): Min: 15.5, Avg: 17.1, Max: 18.5, Diff: 2.9, Sum:<br>
>> 222.8]<br>
>> [Code Root Scanning (ms): Min: 0.0, Avg: 0.0, Max: 0.1, Diff:<br>
>> 0.1, Sum: 0.5]<br>
>> [Object Copy (ms): Min: 62.3, Avg: 63.9, Max: 64.4, Diff: 2.2,<br>
>> Sum: 831.3]<br>
>> [Termination (ms): Min: 0.0, Avg: 0.0, Max: 0.0, Diff: 0.0,<br>
>> Sum: 0.1]<br>
>> [Termination Attempts: Min: 1, Avg: 2.6, Max: 5, Diff: 4,<br>
>> Sum: 34]<br>
>> [GC Worker Other (ms): Min: 0.0, Avg: 0.2, Max: 0.4, Diff: 0.4,<br>
>> Sum: 2.2]<br>
>> [GC Worker Total (ms): Min: 101.4, Avg: 101.7, Max: 102.1,<br>
>> Diff: 0.7, Sum: 1322.7]<br>
>> [GC Worker End (ms): Min: 9429593.3, Avg: 9429593.4, Max:<br>
>> 9429593.6, Diff: 0.4]<br>
>> [Code Root Fixup: 0.2 ms]<br>
>> [Code Root Purge: 0.0 ms]<br>
>> [String Dedup Fixup: 45.4 ms, GC Workers: 13]<br>
>> [Queue Fixup (ms): Min: 0.0, Avg: 0.1, Max: 0.5, Diff: 0.5,<br>
>> Sum: 1.5]<br>
>> [Table Fixup (ms): Min: 43.9, Avg: 44.1, Max: 44.2, Diff: 0.4,<br>
>> Sum: 573.4]<br>
>> [Clear CT: 4.3 ms]<br>
>> [Other: 20.5 ms]<br>
>> [Choose CSet: 0.5 ms]<br>
>> [Ref Proc: 14.3 ms]<br>
>> [Ref Enq: 1.2 ms]<br>
>> [Redirty Cards: 0.7 ms]<br>
>> [Humongous Register: 0.2 ms]<br>
>> [Humongous Reclaim: 0.1 ms]<br>
>> [Free CSet: 2.4 ms]<br>
>> [Eden: 1424.0M(1424.0M)->0.0B(1392.0M) Survivors: 160.0M->192.0M<br>
>> Heap: 11.5G(31.0G)->8796.0M(31.0G)]<br>
>> [Times: user=1.95 sys=0.00, real=0.17 secs]<br>
>><br>
>><br>
>> On Thu, Jun 22, 2017 at 3:18 AM, Thomas Schatzl <thomas.schatzl@oracl<br>
>> <a dir="ltr" href="http://e.com" x-apple-data-detectors="true" x-apple-data-detectors-type="link" x-apple-data-detectors-result="155">
e.com</a>> wrote:<br>
>> > Hi,<br>
>> ><br>
>> > On Tue, 2017-06-20 at 23:45 -0700, Sundara Mohan M wrote:<br>
>> > > Hi,<br>
>> > > Can someone shed more light on<br>
>> > why G1OldCSetRegionThresholdPercent<br>
>> > > flag is under experimental (Need to add -<br>
>> > > XX:+UnlockExperimentalVMOptions to modify it.)<br>
>> ><br>
>> > in my view -XX:+UnlockExperimentalVMOptions mostly serves mostly<br>
>> > as a<br>
>> > "I really want to do that and I know what I am doing" confirmation<br>
>> > from<br>
>> > the user that he is aware that using this (in this case) option to<br>
>> > influence the set of regions taken in during mixed gc you might get<br>
>> > surprising behavior.<br>
>> ><br>
>> > Also, I think there has been no official documentation for it -<br>
>> > also<br>
>> > because it should be very rarely needed.<br>
>> > In particular, I am curious about the case when it would be useful<br>
>> > to<br>
>> > change it. Could you give some log files showing that there is an<br>
>> > issue<br>
>> > with the upper bound for the number of old gen regions to take<br>
>> > during<br>
>> > GC? (i.e. the amount of old gen regions taken is too small and<br>
>> > there is<br>
>> > ample pause time left and it matters to clean up more regions in a<br>
>> > single mixed gc?)<br>
>> ><br>
>> > Sometimes there are problems with the lower bound that is<br>
>> > controlled by<br>
>> > the -XX:G1MixedGCCountTarget (product level) option.<br>
>> ><br>
>> > Hth,<br>
>> > Thomas<br>
>> ><br>
>> ><br>
<br>
<br>
</div>
</div>
</div>
</body>
</html>