vote up 6 vote down star
2

I get this errormessage as I execute my JUnit-Tests:

java.lang.OutOfMemoryError: GC overhead limit exceeded

I know OutOfMemoryError, but what does GC overhead limit mean, and how can I exceed this?

EDIT: I resolved the problem, but thanks to your answers I learned something new about the JVM.

flag

1  
This sounds very interesting. I'd love if someone could post some code that generates this. – unknown (google) Sep 8 at 12:21
Can you post an indication of how you solved the problem? we're running into the same issue now and a hint as to where to look would be helpful. – Matt Oct 22 at 17:04
I simply found the problem, that lead to too much memory-usage, near to the limit of the heap. A simple solution could be simply to give some more Heap-memory to the Java-Engine (-Xmx) but this only helps, if the application needs exactly as much memory, as the heap-limit before was set. – Mnementh Oct 23 at 9:10

2 Answers

vote up 12 vote down check

This message means that for some reason the garbage collector is taking an excessive amount of time (by default 98% of all CPU time of the process) and recovers very little memory in each run (by default 2% of the heap).

This effectively means that your program stops doing any progress and is busy running only the garbage collection at all time.

To prevent your application from soaking up CPU time without getting anything done, the JVM throws this Error so that you have a chance of diagnosing the problem.

The rare cases where I've seen this happen is where some code was creating tons of temporary objects and tons of weakly-referenced objects in an already very memory-constrained environment.

Check out this article for details (specifically this part).

link|flag
vote up 2 vote down

The GC throws this exception when too much time is spent in garbage collection for too little return, eg. 98% of CPU time is spent on GC and less than 2% of heap is recovered.

This feature is designed to prevent applications from running for an extended period of time while making little or no progress because the heap is too small.

You can turn this off with the command line option -XX:-UseGCOverheadLimit

More info here

EDIT: looks like someone can type faster than me :)

link|flag
2  
"You can turn this off..." but the OP most likely should not do this. – Stephen C Sep 8 at 12:57

Your Answer

Get an OpenID
or

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