Seeking answer to a GC pattern
Srinivas Ramakrishna
ysr1729 at gmail.com
Tue Nov 24 20:13:42 UTC 2015
What Grzegorz & Thomas said.
Also you might take a heap dump before and after a full gc
(-XX:+PrintClassHistogramBefore/AfterFullGC) to see the types that are
reclaimed in the old gen. Might give you an idea as to the types of objects
that got promoted and then later died, and hence whether avoidable nepotism
is or is not a factor (and thence what you might null out to reduce such
nepotism).
Also, I guess what I meant was MTT=1. However, given that going from MTT=10
to MTT=2 didn't make any appreciable difference, MTT=2 to MTT=1 will not
either.
You might also consider increasing yr young gen size, but that will likely
also increase your pause times since objects tend to either die quickly or
survive for a long time, and increasing the young gen size will still not
age objects sufficiently to cause an increase in mortality.
How many CPU's (and GC threads) do you have? Does the ratio of "real" to
"usr+sys" increase as "real" ramps up? Does the amount that is promoted
stay constant? That might imply that something is interfering with
parallelization of copying. Typically that means that there is a long
skinny data structure, such as a singly linked list that is being copied,
although why that list would become longer (in terms of longer times) is
not clear. Does the sawtooth of minor gc times happen even with MTT=1 or
AlwaysTenure? (Hint: How many young collections do you see between the
major collections when you see the sawtooth in young collection times? How
does it compare with the highest age of object that is kept in the survivor
spaces?)
-- ramki
On Tue, Nov 24, 2015 at 9:17 AM, Grzegorz Molenda <molendag at gmail.com>
wrote:
> Just a few tips:
>
> Check OS stats for paging / swapping activity at both VM'and hypervisor
> levels.
>
> Make sure the OS doesn't use transparent huge pages.
>
> If the above two don't help, try enabling -XX:+PrintGCTaskTimeStamps to
> diagnose, which part of GC collecion takes the most time. Note values
> aren't reported in time units, but in ticks. Subtract one from the other
> reported per task . Compare between tasks per signle collection and check
> stats from a few collections in row, to get the idea, where it does
> degradate.
>
> Thanks,
>
> Grzegorz
>
>
>
> 2015-11-20 20:46 GMT+01:00 Jun Zhuang <jun.zhuang at hobsons.com>:
>
>> Hi Srinivas,
>>
>>
>>
>> Thanks for your suggestion. I ran test with following parameters:
>>
>>
>>
>> -server -XX:+UseCompressedOops -XX:+TieredCompilation
>> -XX:ReservedCodeCacheSize=64m -XX:+UseCodeCacheFlushing
>> -XX:+PrintTenuringDistribution -Xms2g -Xmx2g -XX:MaxPermSize=256m
>> -XX:NewSize=128m -XX:MaxNewSize=128m -XX:SurvivorRatio=6
>> -XX:-UseAdaptiveSizePolicy -XX:+DisableExplicitGC -XX:MaxTenuringThreshold=2
>>
>>
>>
>> But the -XX:MaxTenuringThreshold=2 setting does not seem to help
>> anything. I am still seeing similar GC pattern as with the +AlwaysTenure,
>> actually the young GC time is higher with MTT=2 (getting to 0.5 secs vs.
>> 0.25 with AlwaysTenure).
>>
>>
>>
>> Unless anyone else can provide another theory, I am convinced that
>> nepotism is at play here. Changing the java startup parameters can only get
>> me so far, dev will have to look at the code and see what can be done on
>> the code level.
>>
>>
>>
>> Thanks,
>>
>> Jun
>>
>>
>>
>> *From:* Srinivas Ramakrishna [mailto:ysr1729 at gmail.com]
>> *Sent:* Thursday, November 19, 2015 8:09 PM
>> *To:* Jun Zhuang <jun.zhuang at hobsons.com>
>> *Cc:* hotspot-gc-use at openjdk.java.net
>> *Subject:* Re: Seeking answer to a GC pattern
>>
>>
>>
>> Use -XX:MaxTenuringThreshold=2 and you might see better behavior that
>> +AlwaysTenure (which is almost always a very bad choice). That will at
>> least reduce some of the nepotism issues from +AlwaysTenure that Thomas
>> mentions. MTT > 2 is unlikely to help at your current frequency of minor
>> collections since the mortality after age 1 is fairly low (from your
>> tenuring distribution). Worth a quick test.
>>
>>
>>
>> -- ramki
>>
>>
>>
>> _______________________________________________
>> hotspot-gc-use mailing list
>> hotspot-gc-use at openjdk.java.net
>> http://mail.openjdk.java.net/mailman/listinfo/hotspot-gc-use
>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.openjdk.java.net/pipermail/hotspot-gc-use/attachments/20151124/9efe3d6f/attachment-0001.html>
More information about the hotspot-gc-use
mailing list