线上有个应用偶尔 CPU 会 100%,尝试使用 jstack 排查确有如下提示
Unable to open socket file: target process not responding or HotSpot VM not loaded The -F option can be used when the target process is not responding
尝试使用-F 后得到的信息又如下: sun.jvm.hotspot.debugger.DebuggerException: get_thread_regs failed for a lwp
JDK 信息: java version "1.8.0_131" Java(TM) SE Runtime Environment (build 1.8.0_131-b11) Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)
启动参数: -server -Xmx4g -Xms4g -XX:PermSize=128m -Xss256k -XX:+DisableExplicitGC -XX:+UseG1GC -XX:MaxGCPauseMillis=100 -XX:ParallelGCThreads=4 -XX:MetaspaceSize=512m -XX:MaxMetaspaceSize=1g -XX:+PrintGCDetails -XX:+PrintHeapAtGC -XX:+PrintGCDateStamps -XX:+PrintGCApplicationConcurrentTime -XX:+PrintGCApplicationStoppedTime -Xloggc:/usr/gc.log -Djava.io.tmpdir=/tmp -jar
求解有没有什么思路?
1
jacksparrow414 2021-03-25 08:58:09 +08:00
如果是 JDK8 看下是哪个版本吧,有的版本确实是有这个问题
|