Troubleshoot high CPU usage in Java

Source: Internet
Author: User
Tags high cpu usage

Troubleshoot high CPU usage in Java

THE top Command finds that a process occupies 100% of the CPU.

Use the ps command to determine which process is faulty.

View the CPU usage list of the thread.

# Ps-mp PID-o THREAD, tid, time


Find the thread with the highest CPU usage, view TID, and convert it to hexadecimal format

# Printf "% x \ n" TID


View the stack information.

# Jstack PID | grep hexadecimal TID-A 60


The error is reported because the user running the tomcat process is tomcat, and the current user is the root user to view the stack information.

Switch to tomcat to execute the command

# Sudo-u tomcat jstack 32072 | grep 1541-A 60 # sudo-u tomcat jstack-J-d64-m 32072

This article permanently updates the link address:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.