root@test:~# ps aux|grep java|grep -v grep|awk '{ pp="pstree -p "$2" |wc -l"; print pp}'|xargs -i -t sh -c {}
sh -c pstree -p 1117 |wc -l
46
.
.
.
sh -c pstree -p 5883 |wc -l
16165
sh -c pstree -p 10112 |wc -l
152
一次性就把对应异常线程使用的进程找出来了
再ps一下对应进程即可