while using Jruby, i get this message.
Complete Java stackTrace
java.lang.OutOfMemoryError: Java heap space
how to resolve ?
|
|
|||
|
|
|
Increasing the heap dump size might only be a band-aid. You need to generate a heap dump by adding the proper proper argument:
This will generate a file similar to java_*.hprof. You can then use a bevy of open source tools to analyze the heap dump. Java 1.6 ships with JHat, which is kind of buggy and doesn't analyze large heaps well. I use this awesome Eclipse plugin: Eclipse Memory Analyzer. Once a report is generated from the heap dump, you can see which classes are taking up the most memory and you can use that as a starting point for debugging your code to find any memory leaks. |
||
|
|
|
|
You can tune the JVM heap size using the
I usually use the same settings for the initial and max heap size. In your case, it's really hard to say how to size the JVM without more information on what you're doing, when the problem occurs... Or maybe you just have a memory leak somewhere and increasing the heap size won't help, it will just make the problem occur later. In this case, the only solution is to fix the leak. Last be not least, always keep in mind that the bigger the heap, the longer the major GC. |
|||
|
|
|
|
Either you're leaking memory and you need to find why or you need to give Java more heap space:
|
||
|
|
|
|
you can set your max heap to a larger size on the command line:
|
||
|
|