- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: High CPU utilization
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
тАО03-13-2003 04:19 AM
тАО03-13-2003 04:19 AM
High CPU utilization
This is my first posting to this group and as you would expect caused by a critical situation...
I've got an app running an Oracle instance on my HPUX11 box. From time to time I can see one Oracle session "eating" up all my available CPU though I can't see no real activity on Oracle going on, nor swapping is strangely abnormal. Furthermore, if I attempt to trace the Oracle session I don't get any trace file at all.
You can see a "top" of the situation on the attached file.
Have you ever seen this behaviour? What would you look for here? Any hints?
Many thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-13-2003 04:33 AM
тАО03-13-2003 04:33 AM
Re: High CPU utilization
OR run tusc and check what it doing. lsof will also help to some extent.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-13-2003 05:04 AM
тАО03-13-2003 05:04 AM
Re: High CPU utilization
I agree with Anil, you need to check the query that's being run, then do an 'explain plan' to find out how Oracle is processing it. Often you'll find that full table scans of large tables are occurring. Sometimes you can improve things by adding an index.
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-13-2003 05:54 AM
тАО03-13-2003 05:54 AM
Re: High CPU utilization
Whereis tusc ??
If you run this command it will tell you where tusc is installed, else you'dd better get it.
tusc -p
f.e. : /usr/local/bin/tusc -p 2398
Will show you on a low level what the process is doing. Be carefull, it will show you a lot !!
tusc
f.e.
tusc ls -l
Maybe it will help a little in debugging.
Regs David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-18-2003 11:27 AM
тАО04-18-2003 11:27 AM
Re: High CPU utilization
I would just like to add that there is this command called "EXPLAIN PLAN FOR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-18-2003 11:53 AM
тАО04-18-2003 11:53 AM
Re: High CPU utilization
Thanks
Zafar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-18-2003 12:14 PM
тАО04-18-2003 12:14 PM
Re: High CPU utilization
lsof -p pid
-or-
lsof -p 3908 (* using your attachement*)
Check your disk activity with :
sar -d 5 5
Note anything greater than 50% utilizied. See what file system resides upon it:
pvdisplay -v /dev/dsk/cXtYdZ
Redo logs will be high for instance.
And cross reference with 'v$filestat' and statspack.
Need to check cache performance as well as anything less then 90% cache hit needs adjustment.