gpt4 book ai didi

java - 接下来在 hs_err_pid###.log 文件中查看什么?

转载 作者:行者123 更新时间:2023-11-30 05:47:28 43 4
gpt4 key购买 nike

如果我在 hs_err_pid###.log 文件中看到类似以下内容,这是否表明存在泄漏或内存耗尽?

下面显示了 GC 堆历史记录。有 250 个事件,它们看起来都一样,eden 空间已使用 100%,ParOldGen 也已满。

GC Heap History (250 events):
Event: 603738.947 GC heap before
{Heap before GC invocations=10735 (full 1042):
PSYoungGen total 245248K, used 220160K [0x00000000d5580000, 0x00000000e8680000, 0x0000000100000000)
eden space 220160K, 100% used [0x00000000d5580000,0x00000000e2c80000,0x00000000e2c80000)
from space 25088K, 0% used [0x00000000e2c80000,0x00000000e2c80000,0x00000000e4500000)
to space 26112K, 0% used [0x00000000e6d00000,0x00000000e6d00000,0x00000000e8680000)
ParOldGen total 1398272K, used 1398162K [0x0000000080000000, 0x00000000d5580000, 0x00000000d5580000)
object space 1398272K, 99% used [0x0000000080000000,0x00000000d5564b30,0x00000000d5580000)
Metaspace used 78830K, capacity 83683K, committed 146496K, reserved 1132544K
class space used 8021K, capacity 11589K, committed 62824K, reserved 1048576K

下面的内容可以与上面的内容相关吗? GC 由于空间不足而失败?

Events (250 events):
Event: 603741.921 Executing VM operation: ParallelGCFailedAllocation
Event: 603742.654 Executing VM operation: ParallelGCFailedAllocation done
Event: 603742.655 Executing VM operation: ParallelGCFailedAllocation

文件中的堆栈是否表明由于引用 libjvm.so 文件而导致 JNI 层内发生故障?

Stack: [0x00002b19adbe2000,0x00002b19adce2000],  sp=0x00002b19adce0970,  free space=1018k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [libjvm.so+0x687782]
V [libjvm.so+0x61061d]
V [libjvm.so+0x474bb6]
V [libjvm.so+0x612aff]
V [libjvm.so+0xad56b7]
V [libjvm.so+0xad3fc8]
V [libjvm.so+0xad4499]
V [libjvm.so+0xad48f1]
V [libjvm.so+0x8beb82]

这是 siginfo,但它并没有告诉我太多信息:

 siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x0000000000000040

根据上述情况,这是否属于泄漏或内存不足错误?要研究以进一步诊断此问题的日志文件的下一部分是什么?

最佳答案

Is it a good indication of a leak or memory simply ran out

没有。如果内存耗尽,JVM 将抛出 OutOfMemoryError。无关紧要(堆或 native )。如果 jvm 无法通过 mallocmmap 返回 NULL 分配所需的 native 内存,它将被理解为 JVM 并抛出 OOME。

SEGV 表示进程试图访问无效的内存位置(例如 0 或不属于该进程的位置)。

如果没有 JVM 的调试符号,很难说出具体的内容。

关于java - 接下来在 hs_err_pid###.log 文件中查看什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54597572/

43 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com