- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Meaning of "nice utilisation" in cpu metrics in gl...
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
02-11-2002 02:35 PM
02-11-2002 02:35 PM
Meaning of "nice utilisation" in cpu metrics in glance
I have noticed in glance that CPU utilisation is almost continuously at 100%. Drilling down in glance "option a", I can see that the Nice state is accounting for about 90% of this utilisation. Can anybody explain what this means?? It is a group of oracle processes that are consuming most of the CPU and all have nice priority of 22. The DBAs have since bounced the database and as a result CPU utilisation is still around 100% but is now showing the User state is accounting for around 90% which is more what I'd expect.
Any insights greatly appreciated.
Cheers
Con
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2002 07:32 PM
02-11-2002 07:32 PM
Re: Meaning of "nice utilisation" in cpu metrics in glance
The fact that there are a lot of nice processes consuming time is not important. The amount of CPU time consumed by databases is 100% dependent on the efficiency (or lack thereof) of query statements and the number of active clients. There is no need to be concerned if usage stays at 95%, even 100%, as long as users are happy with the results. If the systems starts to seem slow, run a database statistics collection on each of the queries and rewrite the ones that are used the most. Thios also includes adding new indexes and making sure that current indexes are valid and balanced.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2002 07:56 PM
02-11-2002 07:56 PM
Re: Meaning of "nice utilisation" in cpu metrics in glance
Thanks again for your reply.
Cheers
Con
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2002 12:17 AM
02-12-2002 12:17 AM
Re: Meaning of "nice utilisation" in cpu metrics in glance
If you have 11.11 load this and dependencies.
Patch Name: PHKL_24551
Patch Description: s700_800 11.11 thread nostop, vPar, Psets, load averages
Creation Date: 01/07/18
Post Date: 01/08/02
steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2002 01:30 AM
02-12-2002 01:30 AM
Re: Meaning of "nice utilisation" in cpu metrics in glance
Bill very well explain nice priority.
UNIX dynamically calculate priority with next formula:
Priority=(???recent CPU usage???/constant)+ (base priority)+(nice value)
/Maurice J.Bach ???The design of the UNIX operating system???/.
Base priority for HP-UX is 20. All interactive users have only base priority and
nice priority=0.
ORACLE have 4 or 5 base processes: ora_pmon, ora_smon, ora_dbwr ect.
If this processes have nice priority=22 , scheduler planing them after all other.
All users who submit querys to ORACLE must wait these processes ???to end his work???.
If these processes have negative nice priority, scheduler planing them more frequently and
ORACLE work with beter performance.
I use nice priority= -10 for ora_smon, ora_pmon ect.
To improve ORACLE performance you can use HP PRM.