Java crash during garbage collection

1

I have the following problem: Java application without using JNI regularly crashes during garbage collection:

A fatal error has been detected by the Java Runtime Environment:
EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000000000000, pid=3032, tid=0x0000000000000500

JRE version: Java(TM) SE Runtime Environment (8.0_211-b12) (build 1.8.0_211-b12)
Java VM: Java HotSpot(TM) 64-Bit Server VM (25.211-b12 mixed mode windows-amd64 compressed oops)
Problematic frame:
C  0x0000000000000000
---------------  T H R E A D  ---------------
Current thread (0x000000000323f000):  GCTaskThread [stack: 0x0000000017af0000,0x0000000017bf0000] [id=1280]

I don't override the finalize method.

What could cause such crashes? If gc crash during validation of pointers to objects, probably, we can see what gc collecting before the crash?

I have tried many versions of jdk8, the error is the same everywhere.

java
crash
garbage-collection
asked on Stack Overflow Aug 19, 2019 by Lionblaze _ • edited Aug 19, 2019 by Lionblaze _

1 Answer

0

My bet is that you are running out of memory.

answered on Stack Overflow Aug 19, 2019 by Marius Nicolae

User contributions licensed under CC BY-SA 3.0