-
Bug
-
Resolution: Fixed
-
P2
-
hs25
-
host: JTG-X4200-02, AMD Dual Core AMD Opteron(tm) Processor 280 2393 MHz, 4 cores, 4G, Win32 / Microsoft Windows 7,
JDK: Java(TM) SE Runtime Environment 1.8.0 b77 (1.8.0-ea-b77)
VM Java HotSpot(TM) Client VM 25.0 b19 (25.0-b19-internal-201302152130.amurillo.hs25-b19-snapshot)
Options -client -Xmixedhost: JTG-X4200-02, AMD Dual Core AMD Opteron(tm) Processor 280 2393 MHz, 4 cores, 4G, Win32 / Microsoft Windows 7, JDK: Java(TM) SE Runtime Environment 1.8.0 b77 (1.8.0-ea-b77) VM Java HotSpot(TM) Client VM 25.0 b19 (25.0-b19-internal-201302152130.amurillo.hs25-b19-snapshot) Options -client -Xmixed
-
b03
-
generic
-
generic
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8045246 | 8u25 | David Simms | P2 | Resolved | Fixed | b01 |
JDK-8036738 | 8u20 | David Simms | P2 | Closed | Fixed | b06 |
JDK-8053247 | emb-8u26 | David Simms | P2 | Resolved | Fixed | b17 |
JDK-8072199 | 7u85 | Unassigned | P2 | Resolved | Fixed | b01 |
JDK-8058938 | 7u80 | Sergey Gabdurakhmanov | P2 | Closed | Fixed | b03 |
JDK-8058940 | 6u91 | Sergey Gabdurakhmanov | P2 | Closed | Fixed | b02 |
I left runTheseC running overnight on a Solaris machine in the hope of using libumem's memory leak detection but I couldn't get any useful information from it, but we're definitely leaking something:
$ pmap 5287 |grep heap
0000000000411000 4193312K rw--- [ heap ]
0000000100319000 2350824K rw--- [ heap ]
Metaspace usage is around 11MB with 40MB committed so we don't have a lot of live classes it seems.
Using libumem to gather some snapshots of all malloc() calls in a run. One thing that shows up is allocation of ParkEvents which are leaked (intentionally, it appears).
runThese aggresively spawns threads which open JAR files, which seem to end up in JVM_RawMonitorEnter:
libumem.so.1`malloc+0x2e
libjvm.so`__1cCosGmalloc6FLHpC_pv_+0x80
libjvm.so`__1cJParkEventIAllocate6FpnGThread__p0_+0x116
libjvm.so`__1cHMonitorMjvm_raw_lock6M_v_+0x248
libjvm.so`JVM_RawMonitorEnter+0x25
libzip.so`ZIP_Lock+0xd
libzip.so`Java_java_util_zip_ZipFile_read+0x43
0xfffffd7fed812094
ParkEvents on Solaris are 440 bytes each, and there are >10000 of them on the ParkEvent::FreeList after an hour of running the compileThese version of runThese.
I also tried an instrumented build on Windows, where I use HeapCreate to create a separate memory heap for allocating ParkEvents to be able to track them externally to the process. After running runTheseC for around 30 minutes that heap has grown to 256MB.
A theory for the root cause of this is that ParkEvent::Allocate is not designed to handle the load of 15-16 threads contending on a Monitor* through the JVM_RawMonitor* API.
Using the RawMonitor functions disallows the VM from using the JavaThread's ParkEvent and forces all those contending threads to hit ParkEvent::Allocate.
ParkEvents are maintained on a lock-free free list which is designed to avoid ABA problems by doing push-one pop-all, so there is a potential for allocation spikes while one thread is CAS:ing on the FreeList.
I=H (aggressive memory leak if this problem occurs, can easily lead to crash due to OOME)
L=L (very unlikely situation)
W=H (no known work-around if this situation arises)
- backported by
-
JDK-8045246 ParkEvent leak when running modified runThese which only loads classes
- Resolved
-
JDK-8053247 ParkEvent leak when running modified runThese which only loads classes
- Resolved
-
JDK-8072199 ParkEvent leak when running modified runThese which only loads classes
- Resolved
-
JDK-8036738 ParkEvent leak when running modified runThese which only loads classes
- Closed
-
JDK-8058938 ParkEvent leak when running modified runThese which only loads classes
- Closed
-
JDK-8058940 ParkEvent leak when running modified runThese which only loads classes
- Closed
- duplicates
-
JDK-8006836 PlatformEvent is leaking event handles on Windows
- Closed
- relates to
-
JDK-8038274 update 8u fix for 8028073 now that 8028280 is backported to 8u
- Closed
-
JDK-8006836 PlatformEvent is leaking event handles on Windows
- Closed