精华帖 (0) :: 良好帖 (2) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2010-11-01
最后修改:2010-11-02
最近在一个项目中,web 应用跑一段时间后, JBoss JVM crash ,web日志中没有任何异常。 存放日志的地方发现有 hs_err_pid25052.log,发现这个文件,就知道是JVM crash了。
打开这个文件然后分析: --------------- T H R E A D --------------- Current thread (0x0000000050682000): GCTaskThread [stack: 0x00000000413fb000,0x00000000414fc000] [id=25059] siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x0000000000000018 Registers: 此处省略......... Top of Stack: (sp=0x00000000414fae70) 此处省略......... Instructions: (pc=0x00002aaffd33163c) 此处省略......... Stack: [0x00000000413fb000,0x00000000414fc000], sp=0x00000000414fae70, free space=3ff0000000000000018k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) V [libjvm.so+0x62263c] V [libjvm.so+0x6230b0] V [libjvm.so+0x625672] V [libjvm.so+0x365dda] V [libjvm.so+0x5da2af] 分析1:JVM crash时,执行的线程GCTaskThread;V [libjvm.so+0x62263c]
分析2:这里日志是当前所有的Thread的列表。exited标示说明这个是执行线程。
分析3上,从上面的日志可以肯定是Young GC的时候发生了异常,导致JVM crash。
在网上查询这个异常,发现很多人碰到了这个问题;然后看到sun jdk 官网上,这个版本(1.6_18)有已知的问题,其中一条讲的就是我们的问题:
Card-Marking Optimization Issue • A flaw in the implementation of a card-marking performance optimization in the JVM can cause heap corruption under some circumstances. This issue affects the CMS garbage collector prior to 6u18, and the CMS, G1 and Parallel Garbage Collectors in 6u18. The serial garbage collector is not affected. Applications most likely to be affected by this issue are those that allocate very large objects which would not normally fit in Eden, or those that make extensive use of JNI Critical Sections (JNI Get/Release*Critical). This issue will be fixed in the next Java SE 6 update. Meanwhile, as a workaround to the issue, users should disable this performance optimization by -XX:-ReduceInitialCardMarks.
解决方案:通过jdk 增加这个 -XX:-ReduceInitialCardMarks 项,避免这个问题。
总结: JVM crash时,充分分析JVM自动生成的hs_err_pid.log文件;如果确定是JVM的问题后,去网上google,并且上Sun的官网。
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2011-07-25
Heap
PSYoungGen total 115712K, used 5096K [0x3da40000, 0x45a40000, 0x45a40000) eden space 100480K, 5% used [0x3da40000,0x3df3a058,0x43c60000) from space 15232K, 0% used [0x44b60000,0x44b60000,0x45a40000) to space 15296K, 0% used [0x43c60000,0x43c60000,0x44b50000) PSOldGen total 688128K, used 87319K [0x13a40000, 0x3da40000, 0x3da40000) object space 688128K, 12% used [0x13a40000,0x18f85f78,0x3da40000) PSPermGen total 131072K, used 58869K [0x03a40000, 0x0ba40000, 0x13a40000) object space 131072K, 44% used [0x03a40000,0x073bd710,0x0ba40000) ------------------------------------------------ 我碰到的情况,这是JVM内存使用的,应该是其它原因造成crash,楼主觉得呢? |
|
返回顶楼 | |
浏览 7969 次