I do not understand what exactly the G1GC GC logs mean(when adding PrintGCDetails and PrintGCTimeStamps). Can someone shed light on the syntax?

[

GC pause (young), 0.03067078 secs]
   [SATB Drain Time:   0.2 ms]
   [Parallel Time:  22.6 ms]
      [GC Worker Start Time (ms):  165213430.0  165213430.0  165213430.0  165213430.0  165213430.0  165213430.0  165213430.1  165213430.1]
      [Update RS (ms):  10.7  10.0  11.1  9.9  9.9  11.2  10.6  8.6
       Avg:  10.3, Min:   8.6, Max:  11.2]
         [Processed Buffers : 14 8 8 12 9 11 10 8
          Sum: 80, Avg: 10, Min: 8, Max: 14]
      [Ext Root Scanning (ms):  2.5  2.6  2.9  3.4  3.3  2.7  2.6  2.4
       Avg:   2.8, Min:   2.4, Max:   3.4]
      [Mark Stack Scanning (ms):  0.0  0.0  0.0  0.0  0.0  0.0  0.0  2.2
       Avg:   0.3, Min:   0.0, Max:   2.2]
      [Scan RS (ms):  4.0  4.1  3.1  3.7  3.9  3.2  3.8  3.9
       Avg:   3.7, Min:   3.1, Max:   4.1]
      [Object Copy (ms):  4.7  5.3  4.7  4.8  4.7  4.7  4.8  4.7
       Avg:   4.8, Min:   4.7, Max:   5.3]
      [Termination (ms):  0.0  0.0  0.0  0.0  0.0  0.0  0.0  0.0
       Avg:   0.0, Min:   0.0, Max:   0.0]
         [Termination Attempts : 23 1 26 23 19 29 22 25
          Sum: 168, Avg: 21, Min: 1, Max: 29]
      [GC Worker End Time (ms):  165213452.3  165213452.3  165213452.3  165213452.3  165213452.3  165213452.3  165213452.3  165213452.3]
      [Other:   0.7 ms]
   [Clear CT:   0.6 ms]
   [Other:   7.3 ms]
      [Choose CSet:   0.0 ms]
   [ 3329M->3245M(6000M)]

And what does full GC mean ? Is it a pause is it parallelized ? which GC algorithm is used? Why did G1 decided to use it ?

5.941: [Full GC 7891K->4756K(6000M), 0.1939233 secs]
link|improve this question

20% accept rate
feedback

2 Answers

The following is from reading between the lines of the (rather limited) material I could find online on G1 GC. (There's a paper from 2004 behind a paywall, a slideshow from JavaWorld 2008, and the G1 GC page. If anyone has other links, please add them.)

And what does full GC mean ?

As with other HotSpot GCs, the heap is divided into a New or Eden space, Survivor space(s) and Old or Tenured Object space. However, unlike other HotSpot GCs, G1 uses multiple regions to hold the spaces.

Normally, the G1 collector runs incrementally in parallel with application threads, tracing and "evacuating" objects into other regions. However, it appears that the collector can sometimes get so far behind that it has to stop everything, and use all available processors to collect all of the heap regions. I think that this is a full GC.

Is it a pause is it parallelized ?

I think it is parallelized, but also stop-the-world.

which GC algorithm is used?

It is not clear.

Why did G1 decided to use it ?

See above. It got too far behind and the heap was full of garbage.

link|improve this answer
Pardon? If you have more relevant links, please add them. – Stephen C Mar 10 '11 at 7:09
Thanks Stephan. I am familiar with those links. The problem is that the info publicly available on the web seems to be insufficient.... Does it mean nobody uses or really evaluating this yet ? – lifey Mar 10 '11 at 7:11
I can't judge that. I'm sure that some people use it, but how many is impossible to determine. There are 6 pages of Google hits on "g1gc tuning", but I wouldn't expect any of them to provide definitive information ... unless they came from Oracle. – Stephen C Mar 10 '11 at 10:23
feedback

Few information on "Is it a pause is it parallelized ?" In Java parlance, GC are two types (based on concurrency with mutator i.e. application) - (1)Stop-the-world (2)Concurrent

Stop-the-world GC are further sub-categorized as - 1a)Stop-the-world if the number of GC threads is one 1b)Parallel if the number of GC threads is more than one

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.