In a running system, we see lots of "Full GC (System)" which indicates someone triggers System.gc().

Is there a way to find out where in the code this happens?

I did search all the available source but found nothing suspicious so it must be somewhere, probably another app that's running in the same container or the container itself.

link|improve this question

77% accept rate
Simple solution: start your application in debug mode and put a method breakpoint at System.gc() (and Runtime.gc() for good measure). – Joachim Sauer Jul 29 '11 at 8:59
1  
@Aaron, You have over 50 questions without an accepted answer. Perhaps you could follow up answers so they are acceptable. – Peter Lawrey Jul 29 '11 at 9:09
I see what you mean. Some of my questions are probably too complex for SO; the existing answers are not satisfactory (like stackoverflow.com/questions/6136769/… or stackoverflow.com/questions/6135570/cyclic-buffer-with-readers). – Aaron Digulla Jul 29 '11 at 11:48
feedback

3 Answers

up vote 2 down vote accepted

You can change the Runtime class to log where gc() is being called to a file (System.gc() calls Runtime.gc())

To do this, edit a copy, compile it and add it to your -Xbootclasspath/p:

However a high number of Full GC is more likely to be due to insufficient survivor space or a full tenured space.

Can you try running

jstat -gccause {pid} 5s 
link|improve this answer
feedback

In Java you cannot "call" the garbage collector. If you see the documentation when you call to the method System.gc(), the vm just takes as a suggestion to run the garbage collector, but there is no guarantee that is effectively called. Is an internal process that will be called automatically even if you don't call when it needs space in the stack.

If you are seeing a lot of Full GC, it may be a symptom of the application not releasing the resources correctly. You should monitor the heap to see what's the problem

link|improve this answer
+1 Good point. In my case, a tool was used to analyze the problem and it said "17 out of 449 collections (3,786%) were triggered by System.gc() calls." – Aaron Digulla Jul 29 '11 at 9:47
feedback

Some library which you use might call explicit gc. You can disable it with -XX:-DisableExplicitGC and take a look if it stops Full GC in the logs

link|improve this answer
Good point; that way, I can quickly distinguish between explicit GC calls and "out of memory" invocations. – Aaron Digulla Jul 29 '11 at 9:45
feedback

Your Answer

 
or
required, but never shown

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