I know what an OutOfMemoryError is, but what does GC overhead limit mean? How can I solve this?
Asked
Active
Viewed 116 times
-1
-
please provide the permanent solution – Satya Pardhav QA Nov 15 '19 at 05:59
-
You need to increase Java heap space in your machine. Read this q&a https://stackoverflow.com/questions/1565388/increase-heap-size-in-java – Manmohan_singh Nov 15 '19 at 05:59
1 Answers
0
OutOfMemoryError is a subclass of java.lang.VirtualMachineError; it's thrown by the JVM when it encounters a problem related to utilizing resources. More specifically, the error occurs when the JVM spent too much time performing Garbage Collection and was only able to reclaim very little heap space.
Refer this link for more details and how to find the problem

Lavneesh Chandna
- 151
- 5