gpt4 book ai didi

java - 如何获得 Java 进程的最大堆大小?

转载 作者:行者123 更新时间:2023-12-04 03:35:50 24 4
gpt4 key购买 nike

我想检查我的应用程序是否正确地获得了-Xmx选项。

java进程运行在docker容器中。

为此,我要找出所创建进程的最大堆大小。

起初,我尝试了jmap命令,但是出现了错误:

bash-4.2$ jmap -heap 128
Attaching to process ID 128, please wait...
Error attaching to process: sun.jvm.hotspot.debugger.DebuggerException: Can't attach to the process: ptrace(PTRACE_ATTACH, ..) failed for 128: Operation not permitted
sun.jvm.hotspot.debugger.DebuggerException: sun.jvm.hotspot.debugger.DebuggerException: Can't attach to the process: ptrace(PTRACE_ATTACH, ..) failed for 128: Operation not permitted
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal$LinuxDebuggerLocalWorkerThread.execute(LinuxDebuggerLocal.java:163)
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.attach(LinuxDebuggerLocal.java:278)
at sun.jvm.hotspot.HotSpotAgent.attachDebugger(HotSpotAgent.java:671)
at sun.jvm.hotspot.HotSpotAgent.setupDebuggerLinux(HotSpotAgent.java:611)
at sun.jvm.hotspot.HotSpotAgent.setupDebugger(HotSpotAgent.java:337)
at sun.jvm.hotspot.HotSpotAgent.go(HotSpotAgent.java:304)
at sun.jvm.hotspot.HotSpotAgent.attach(HotSpotAgent.java:140)
at sun.jvm.hotspot.tools.Tool.start(Tool.java:185)
at sun.jvm.hotspot.tools.Tool.execute(Tool.java:118)
at sun.jvm.hotspot.tools.HeapSummary.main(HeapSummary.java:49)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at sun.tools.jmap.JMap.runTool(JMap.java:201)
at sun.tools.jmap.JMap.main(JMap.java:130)
Caused by: sun.jvm.hotspot.debugger.DebuggerException: Can't attach to the process: ptrace(PTRACE_ATTACH, ..) failed for 128: Operation not permitted
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.attach0(Native Method)
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.access$100(LinuxDebuggerLocal.java:62)
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal$1AttachTask.doit(LinuxDebuggerLocal.java:269)
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal$LinuxDebuggerLocalWorkerThread.run(LinuxDebuggerLocal.java:138)

我不知道为什么 jmap 命令会失败。我搜索了相同的问题,但没有一个对我有帮助。

  • 我尝试过的:
    • 与创建进程的用户一起运行命令
    • 在 docker 容器外运行命令docker exec container_id jcmd PID GC.heap_dump/tmp/docker.hprof

而且我无法修改现有的 java 代码,因此我需要使用 CLI 来执行此操作。

jstat 命令工作正常,那么有没有办法用 jstat 命令检查 jvm 最大堆大小?

可以假设 (NGCMX+OGCMX) = (-Xmx value) 吗?

https://docs.oracle.com/javase/8/docs/technotes/tools/unix/jstat.html

最佳答案

您可以使用jcmd 工具:

 jcmd <you_vm_process_id> VM.flags | grep MaxHeapSize

这将显示最大堆(即使您没有自己设置)

关于java - 如何获得 Java 进程的最大堆大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66948524/

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