- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HIGH SYS CPU usage
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 06:56 AM
03-21-2002 06:56 AM
HIGH SYS CPU usage
We are running java1.3 with informix. sar output shows high sys (24-28) when compared user (65-70). I have checked through glance, system calls
sigsetstatemask,revform,semop,read,write,select,stat64 are some of the heavily used one..
Tusc shows that except semop remaining are being called by java process and semop is mainly being called from informix processes.
Apart from application processes,midaemon and vxfd are high CPU users.
Now the task is to reduce sys usage. What could be potential issues in our case.
Thanks in advance.
...BPK...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 08:20 AM
03-21-2002 08:20 AM
Re: HIGH SYS CPU usage
Read the release notes and install ALL patches and dependants.
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 12:51 PM
03-21-2002 12:51 PM
Re: HIGH SYS CPU usage
the directory where these files were, it thrashed. Sure, the computer could handle it,
but a directory is basically a flat file, and not terribly efficient. Deleting the files (with rm *) took 3 and a half days. But once the files were gone, the system utilization
dropped back below 5%. You might check to see
if your system has one or more directories with a LOT of small files.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 01:36 PM
03-21-2002 01:36 PM
Re: HIGH SYS CPU usage
I second what Chris already wrote: seen that a lot in the informix area.
Use "sar -a" (IIRC) and look after the columns "iget" (Inode got per second), "namei" (names converted to their resp. inodenumbers), and "dirbk" (directory blocks processed per second). If you have too many "dirbk/s" then your system slow down dramatically (due to making dozens of megabytes of I/O only for those directories).
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 12:07 AM
03-22-2002 12:07 AM
Re: HIGH SYS CPU usage
Thanks for your responses.
We have couple of directories( 2 in all ) with 20000 files.
And the sar -a shows on average
iget namei dirbk
25 957 1817
Any comments on this ..
...BPK..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 02:24 AM
03-22-2002 02:24 AM
Re: HIGH SYS CPU usage
If you can reduce the number of files in those large directories, I suggest you do so. Also check for other directories which may not have so many files in them now, but have in the past so they are still overly large. Remember, directories don't shrink when files are removed and this can cause performance problems.
Another cause of high sys cpu usage is memory starvation. If you system is paging the sys cpu% will definitely increase.
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 08:51 AM
03-22-2002 08:51 AM
Re: HIGH SYS CPU usage
Regards,
Jason V.