- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- 100% CPU Utilization on HP UNIX 11.11
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
тАО07-16-2009 07:34 PM
тАО07-16-2009 07:34 PM
100% CPU Utilization on HP UNIX 11.11
We have a DB(10.2.0.3.0) running on HP UX 11.11.Their was a new service launch five days ago, due to high hits from application end towards DB, server CPU utilization went to 100% from last five days.Galance output is showing maximum processes of DB. Can you suggest some way out???like, how can we tune kernel parameters etc to reduce its CPU utilization.
Server Specs:
server model is 9000/800/rp3440.
Number of CPU's: 4
CPU Version: PA 8800 CPU Module 3.1
Clock Frequency: 1000 MHz
RAM:32GB
BR,
Umer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2009 08:18 PM
тАО07-16-2009 08:18 PM
Re: 100% CPU Utilization on HP UNIX 11.11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2009 08:41 PM
тАО07-16-2009 08:41 PM
Re: 100% CPU Utilization on HP UNIX 11.11
Check cpu usage is in user mode or kernel mode. If the high cpu usage belongs to oracle processes and this all results from new service launch, first think about tuning on application side.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2009 08:56 PM
тАО07-16-2009 08:56 PM
Re: 100% CPU Utilization on HP UNIX 11.11
There is no way to tune kernel parameters to bring down the cpu utilisation if the resources are consumes by application processes.
It could be due to poor coded application. You need to work with application vendor to find out if it is poorly coded or these processes really needs that much amount of cpu cycles. If those processes needs high cpu cycles, you need to upgrade the cpu's.
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2009 02:17 AM
тАО07-17-2009 02:17 AM
Re: 100% CPU Utilization on HP UNIX 11.11
Lemme add that, application vendor has not provided any kernel parametere for tunning but we tuned kernel parameters as recommended by oracle. But issue remained the same. Actually hits from application end to DB are very high.
Thats why,application is putting so much CPU load.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2009 03:15 AM
тАО07-17-2009 03:15 AM
Re: 100% CPU Utilization on HP UNIX 11.11
Run a statspack report and reply with the output:
sqlplus perfstat/**** @$ORACLE_HOME/rdbms/admin/spreport.sql
If you don't have statspack installed I recomend you install it but, in the meanwhile, you can always run the following query when this high CPU utilization happens:
select s.serial#, s.process client_pid, nvl( s.action, nvl( s.username, substr( s.program, instr( s.program, '(') ))) username_or_action
, s.schemaname, s.osuser, s.status, s.lockwait, s.program, s.machine
, s.row_wait_obj#, s.row_wait_file#, s.row_wait_block#, s.row_wait_row#
, sw.sid, sw.wait_time, sw.seconds_in_wait, sw.event, sw.p1text, sw.p1 p1value, sw.p2text, sw.p2 p2value, sw.p3text, sw.p3 p3value
, q.module, q.sql_text
from v$session_wait sw, v$session s, v$sql q
where sw.event not like 'rdbms%'
and sw.event not like 'SQL%'
and sw.event not like '%time%'
and sw.event not like '%pipe get%'
and sw.event not like '%dle%'
and sw.event not like '%queue%'
and sw.event not like 'jobq%'
and sw.event not like 'PX Deq%'
and s.sid = sw.sid
and q.hash_value = s.sql_hash_value
and q.address = s.sql_address
order by seconds_in_wait desc
Eric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2009 03:51 AM
тАО07-17-2009 03:51 AM
Re: 100% CPU Utilization on HP UNIX 11.11
I suggest you install the June 2009 Gold patch set into the OS.
Also I recommend you consider patching the database with patches from http://metalink.oracle.com
This behavior is fairly typical of Oracle.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2009 04:50 AM
тАО07-17-2009 04:50 AM
Re: 100% CPU Utilization on HP UNIX 11.11
while :
do
:
done
In other words, it is a trivial task to create a 100% load. To get rid of the load (as the system administrator), stop running Oracle.
The real fix is to hire an Oracle and also a specialist that knows the application. Most database issues like this are fixable with SQL and parameter changes. You cannot fix bad applications and database designs with HP-UX changes.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-06-2010 09:09 AM
тАО01-06-2010 09:09 AM
Re: 100% CPU Utilization on HP UNIX 11.11
Work with developer or Sr. Oracle DBA and try to get stats from v$sql and v$sqlstats and then check it out where is the problem.It could be your disk issue as well as oracle stats,Index and may be poor code.But you can start first at disk speed and whether it is fibre channel disk or so on.
You can also look at how the fibre cable and HBA have been designed on ur server.Best way try to look into Glance and try to catch the culprit.If lot of application is hitting to same san storage disk then try to minimise this load by migrating some application to new faster SAN disk.
Thanks,
Manish