- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Acceptable values for CPU run queue length
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
Discussions
Discussions
Discussions
Forums
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
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
тАО02-06-2009 07:42 AM
тАО02-06-2009 07:42 AM
So, can you guys please share your toughts on what are the maximum values that you consider safe, and what values would make you start worring, given that CPU utilization is high (close to 100%)?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2009 09:34 AM
тАО02-06-2009 09:34 AM
SolutionIt├в s best to run some performance gathering utility like ├в collect├в and then check the data when poor performance is reported. That way you can determine what your threshold is.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2009 10:39 AM
тАО02-06-2009 10:39 AM
Re: Acceptable values for CPU run queue length
Martin
A quick resolution to technical issues for your HPE products is just a click away HPE Support Center
See Self Help Post for more details
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2009 04:06 PM
тАО02-06-2009 04:06 PM
Re: Acceptable values for CPU run queue length
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2009 04:38 PM
тАО02-06-2009 04:38 PM
Re: Acceptable values for CPU run queue length
You have to try interpret to run queue in the context of idle time and some application knowledge. A high run queue is never a great sign, but it might not me as bad as it seems.
It can literally be a matter of bad timing.
If lots of processes have a timer set to poll a status (Oracle's control-c by client for example), then they may all become runnable at the same time giving the impression of a big backlog, but no actual user might be waiting and they all turn around and set a next timer in a hurry leaving plenty of idle time and plenty of responsiveness for end users.
The Oracle redo-log group commit is an other one a little like that. Very simplistically... let's say the system is idle and user A commits a transaction into the redo log. Oracle starts a write. Now out of nowhere users B,C,D,...Z all commit their transaction. Oracle does not start an IO for each, but waits for the A commit to finish, and in the mean time appends the redo data for B,C,... Z to the redo buffer. Now when A is committed the slaver process for A is woken up and, the IO for B... Z is started. When that (large) IO finished, B...Z are all woken up at the same time! Suddenly you have a run Q of 25, and the average may look like 5. But most of the time you were waiting! Still, that example may suggest a problem, but where you conclude it is a CPU issue, the IO bandwidth may be more important than the CPU time in this case.
fwiw,
Hein.