Reputation: 305
Is there any tutorial on GCViewer pattern? I am having an issue where GC logs chart is formed like so but can't figure out if it's a Memory Leak issue or it's just merely need more memory. Can anyone please help me out?
From the log, it showed error " ERROR - java.lang.OutOfMemoryError: GC overhead limit exceeded" Thanks.
Upvotes: 1
Views: 1887
Reputation: 1788
In order to figure out whether there is memory leak, having a GC chart is not enough. Basically there are two strategies:
Generally speaking, the first approach is easier and more intuitive for both developers and administrators. The second requires more knowledge of the JVM and heap. Moreover, the first one can be used in production system as JRockit Mission Control has low overhead in production JVM.
Upvotes: 1