G1GC Full GCs

Y. S. Ramakrishna y.s.ramakrishna at oracle.com
Wed Jul 7 17:26:39 PDT 2010



On 07/07/10 17:18, Todd Lipcon wrote:
...
> Looking at the graph you attached, it appears that the low-water mark 
> stabilizes at somewhere between 4.5G and 5G. The configuration I'm 
> running is to allocate 40% of the heap to Memstore and 20% of the heap 
> to the LRU cache. For an 8G heap, this is 4.8GB. So, for this 
> application it's somewhat expected that, as it runs, it will accumulate 
> more and more data until it reaches this threshold. The data is, of 
> course, not *permanent*, but it's reasonably long-lived, so it makes 
> sense to me that it should go into the old generation.

Ah, i see. In that case, i think you could try using a slightly larger old
gen. If the old gen stabilizes at 4.2 GB, we should allow as much for slop.
i.e. make the old gen 8.4 GB (or whatever is the measured stable
old gen occupancy), then add to that the young gen size, and use
that for the whole heap. I would be even more aggressive
and grant more to the old gen -- as i said earlier perhaps
double the old gen from its present size. If that doesn;t work
we know that something is amiss in the way we are going at this.
If it works, we can iterate downwards from a config that we know
works, down to what may be considered an acceptable space overhead
for GC.

> 
> If you like, I can tune down those percentages to 20/20 instead of 
> 20/40, and I think we'll see the same pattern, just stabilized around 
> 3.2GB. This will probably delay the full GCs, but still eventually hit 
> them. It's also way lower than we can really go - customers won't like 
> "throwing away" 60% of the allocated heap to GC!

I understand that sentiment. I want us to get to a state where we are able
to completely avoid the creeping fragmentation, if possible. There are
other ways to tune for this, but they are more labour-intensive and tricky,
and I would not want to go into that lightly. You might want to contact
your Java support for help with that.

> 
> 
>     Perhaps jmap -histo:live or +PrintClassHistogram[AfterFullGC]
>     will help you get to the bottom of yr leak. Once the leak is plugged
>     perhaps we could come back to the G1 tuning effort? (We have some
>     guesses as to what might be happening and the best G1 minds are
>     chewing on the info you provided so far, for which thanks!)
> 
> 
> I can try running with those options and see what I see, but I've 
> already spent some time looking at heap dumps, and not found any leaks, 
> so I'm pretty sure it's not the issue.

OK, in that case it's not worth doing, since you've already ruled
out leaks.

I'll think some more about this meanwhile.

thanks.
-- ramki



More information about the hotspot-gc-use mailing list