Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 384 Bytes

7-cn-memory-dump.md

File metadata and controls

25 lines (18 loc) · 384 Bytes

登录对应的计算节点

kubectl exec -it <pod-name> -- bash

dump 内存

# 通过 JPS 获取进程 ID
jps |grep TDDLLauncher

# dump 内存
jmap -dump:live,format=b,file=heap.bin <pid>

拷贝文件到本地

# 推迟计算节点 Pod
exit

# 拷贝内存文件
kubectl cp <pod-name>:<dump-file-path-and-name> <local-file-name>