内存溢出排除方法思路:
1.看GC日志 126719K->126719K(126720K) [回收前后内存大小不变或一直增长无减少波动,则可能有内存溢出问题]
2.生成堆内存 heap dump(某个时间点jvm中所有活跃的对象的堆内存快照)
3.MAT查看: 过滤列举对象(传入或传出的对象引用)、分组排序显示
1. Histogram or dominator_tree: Retained Heap倒叙排序 查看内存占用
2. 定位问题代码段: 看有没有GC Root指向:若无GC Root指向 -> Merge Shortest Paths to GC Roots -> exclude all phantom/weak/soft etc.reference(排除虚弱软引用) ->查找GC Root线程
File > Open Heap Dump > Leak Suspects Report -打开dump文件
Overview > Actions > The Histogram (查看堆栈中java类 对象[Objects]个数、[Shallow Heap]individual objects此类对象占用大小、[Retained Heap]关联对象占用大小) -> Retained Heap倒叙排序(重点关注内存占用高对象) -> Merge Shortest Paths to GC roots -> exclude all phantom/weak/soft etc.reference(排除所有虚弱软引用) ->查看剩余未被回收的强引用对象占用原因 & GC Roots。
Overview > Actions > dominator_tree (查看堆中内存占用最高的对象的线程调用堆栈) dominator_tree -> 对象调用堆栈树-查找内存占用最高对象(Retained Heap倒叙排序) -> Paths to GC Roots -> exclude all phantom/weak/soft etc.reference (排除所有虚弱软引用) -查找GC Root线程 -> 查找未释放的内存占用最高的代码逻辑段(很可能是产生内存溢出代码)
发表回复