Hi Kajal,
This is an error you run into when the JVM Heap tells you “Enough is enough. I can’t fit all of this into my memory.” Which usually means that the application has become unstable and should be restarted before it crashes and that you also have a real problem to solve.
The following things can cause this error:
https://docs.mendix.com/refguide/runtime-java-errors/
You can refer to this doc.
you can correct this by
Settings→ config.→ Size
Hope it helps!
Hi Kajal,
There are too many objects in memory. This can be, for example, due to a memory leak. Or just a big application and too little memory.
You can up the standard java heap size in the settings.
After that, check the JVM analyses tool from the JDK. Which after connecting to your running Mendix app, gives you insight in the usage:
Hi there, well both the answers above were very insightfull but if those dont work I suggest you simpy delete all the data in your local and start fresh as this error could also be a result of a corrupt data file.
It worked for me may be it will for you too.
Have a nice day
In general, this “Java Heap Space” error will be caused by insufficient Java heap memory allocation. The java.lang.OutOfMemoryError: Java heap space error that you are facing actually indicates that your JVM is running out of memory to allocate for objects in the heap. Suppose, if the issue continues even after increasing the heap size then it should be mainly because of the objects that will be retained unnecessarily in memory. This is actually an indication or a suggestion for a possible memory leak. In such scenarios, it is advisable to enable heap dump generation on OOM (XX:+HeapDumpOnOutOfMemoryError) and analyze the dump using tools like HeapHero to identify which objects are consuming the most memory.
The next possibility could be when the application attempts to load very large files or collections into memory all at once. Yes, this action will actually overwhelm the available heap. This should be the logic behind any application. If any application tries to load large files all at once, definitely the available heap will overwhelm resulting in the “Java Heap Space” error .
If you notice that the garbage collection is running frequently and not reclaiming space then it is a sign that the objects are still strongly referenced. So you can do an analysis for both heap and thread dumps together and get an understanding.
In short, with the recommended steps you can first check your heap size configuration and increase the -Xmx value if needed. If the problem remains the same, then definitely you will have to analyze heap dumps to understand memory usage, with which you can change your code to process large data sets more efficiently.
You can check out this blog How to Solve OutOfMemoryError: Java heap space to understand more about this Java Heap Space error.
java.lang.OutOfMemoryError: Java heap space
: