【发布时间】:2019-01-16 01:09:50
【问题描述】:
注意到生产服务器(Websphere8.5.5)开始消耗大量内存。
javacore dump 中的数字清楚地表明罪魁祸首是一个过大的堆:
| +--Memory Manager (GC): 5,496,900,272 bytes / 3193 allocations
| | |
| | +--Java Heap: 5,368,770,560 bytes / 1 allocation
| | |
| | +--Other: 128,129,712 bytes / 3192 allocations
但同时,在 MAT 中打开的堆转储报告堆的总容量约为 200M(有时高达 300M,但永远不会更多)。
这到底是什么意思?堆转储可信吗?如果是,有没有办法释放未使用的堆内存?
更新:完整的 NATIVEMEM 部分,根据要求
1MEMUSER JRE: 7,211,791,256 bytes / 39196 allocations
1MEMUSER |
2MEMUSER +--VM: 6,772,051,048 bytes / 29934 allocations
2MEMUSER | |
3MEMUSER | +--Classes: 370,339,176 bytes / 10002 allocations
3MEMUSER | | |
4MEMUSER | | +--Shared Class Cache: 62,914,560 bytes / 1 allocation
3MEMUSER | | |
4MEMUSER | | +--Other: 307,424,616 bytes / 10001 allocations
2MEMUSER | |
3MEMUSER | +--Memory Manager (GC): 5,496,900,272 bytes / 3193 allocations
3MEMUSER | | |
4MEMUSER | | +--Java Heap: 5,368,770,560 bytes / 1 allocation
3MEMUSER | | |
4MEMUSER | | +--Other: 128,129,712 bytes / 3192 allocations
2MEMUSER | |
3MEMUSER | +--Threads: 91,710,312 bytes / 3408 allocations
3MEMUSER | | |
4MEMUSER | | +--Java Stack: 5,958,456 bytes / 349 allocations
3MEMUSER | | |
4MEMUSER | | +--Native Stack: 68,812,800 bytes / 248 allocations
3MEMUSER | | |
4MEMUSER | | +--Other: 16,939,056 bytes / 2811 allocations
2MEMUSER | |
3MEMUSER | +--Trace: 3,415,376 bytes / 1229 allocations
2MEMUSER | |
3MEMUSER | +--JVMTI: 17,776 bytes / 13 allocations
2MEMUSER | |
3MEMUSER | +--JNI: 5,821,768 bytes / 9844 allocations
2MEMUSER | |
3MEMUSER | +--Port Library: 794,750,560 bytes / 401 allocations
3MEMUSER | | |
4MEMUSER | | +--Unused <32bit allocation regions: 794,704,552 bytes / 87 allocations
3MEMUSER | | |
4MEMUSER | | +--Other: 46,008 bytes / 314 allocations
2MEMUSER | |
3MEMUSER | +--Other: 9,095,808 bytes / 1844 allocations
1MEMUSER |
2MEMUSER +--JIT: 436,874,280 bytes / 8850 allocations
2MEMUSER | |
3MEMUSER | +--JIT Code Cache: 268,435,456 bytes / 1 allocation
2MEMUSER | |
3MEMUSER | +--JIT Data Cache: 48,235,968 bytes / 23 allocations
2MEMUSER | |
3MEMUSER | +--Other: 120,202,856 bytes / 8826 allocations
1MEMUSER |
2MEMUSER +--Class Libraries: 2,865,928 bytes / 412 allocations
2MEMUSER | |
3MEMUSER | +--Harmony Class Libraries: 2,000 bytes / 1 allocation
2MEMUSER | |
3MEMUSER | +--VM Class Libraries: 2,863,928 bytes / 411 allocations
3MEMUSER | | |
4MEMUSER | | +--sun.misc.Unsafe: 2,635,720 bytes / 307 allocations
4MEMUSER | | | |
5MEMUSER | | | +--Direct Byte Buffers: 2,625,112 bytes / 304 allocations
4MEMUSER | | | |
5MEMUSER | | | +--Other: 10,608 bytes / 3 allocations
3MEMUSER | | |
4MEMUSER | | +--Other: 228,208 bytes / 104 allocations
【问题讨论】:
-
我看到的唯一奇怪的事情是有大约 750MB 的释放 32 位分配区域。这可能表明某种不必要的流失。但我首先会从收集 RSS/VSZ 上的匹配操作系统数据开始,并定期收集 javacores。如果 RSS 超过 -Xmx,那么我会担心。如果您需要更多帮助,可以打开支持案例。
标签: java memory-management jvm websphere heap-memory