- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Performance Issues
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
05-07-2006 05:58 PM
05-07-2006 05:58 PM
Performance Issues
I am not getting which processes are utilizing the CPU power and that are not getting displayed even with TOP command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2006 06:10 PM
05-07-2006 06:10 PM
Re: Performance Issues
Sometimes, top doesnt help you. You can try the following,
1) UNIX95= ps -ef -o cpu,pcpu,pid,comm
Execute this and see what is happening in your system.
2) http://www.hpux.ws/system.perf.sh
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2006 06:16 PM
05-07-2006 06:16 PM
Re: Performance Issues
from the top output, I think the "post_rate" used most of the CPU esource....
u can also use ps to list the %CPU and sort it.
UNIX95= ps -ef -opcpu,pid,ppid,ruser,args|sort -k1
GOOD LUCK!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2006 06:34 PM
05-07-2006 06:34 PM
Re: Performance Issues
Post _rate processis utilizing most of CPU power and that what is expected.
3-4 Days before we were running four strams of post_ rate and each was utilizing 80-90% However now suddenly I dont know what has happened and it is utilizing only 40-50 %.
I am sending you the output of the commands u have given. But still I am unable to get where my cpu power is going. Kindly help me on this
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2006 06:52 PM
05-07-2006 06:52 PM
Re: Performance Issues
I presume they run on Oracle 9i.
19.89 14337 12105 bsnlprod post_rate SWITCH=MH PERSPECTIVE=INCOM
24.00 2529 1528 bsnlprod post_rate PERSPECTIVE=INCOM SWITCH=MPCHG
28.64 14108 14103 root compress /user_sun/oracle9i/oradata/iobasprd/archive/archive_30
29.28 11243 1 oracle9i oracleiobasprd (LOCAL=NO)
42.90 2340 1528 bsnlprod post_rate PERSPECTIVE=INCOM SWITCH=GJ
54.02 1775 1528 bsnlprod post_rate PERSPECTIVE=INCOM SWITCH=WTR
Try to find out if the are doing something on the OS or if they are doing something in
Oracle.
Maybe you can check in the v$sqlarea
to find the number of blocks read/write
for these processses :
select s.username, s.sid, s.machine, s.osuser, n.statistic#,
substr(s.program,1,25),
t.value "Aantal reads - writes"
from v$session s, v$sesstat t, v$statname n
where s.sid = &SID_FROM_PID
and s.sid = t.sid
and t.statistic# = n.statistic#
and n.name like '%physical%'
and not s.username is null
You can find &SID_FROM_PID,
by querying v$process against v$session first.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2006 07:23 PM
05-07-2006 07:23 PM
Re: Performance Issues
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2006 07:38 PM
05-07-2006 07:38 PM
Re: Performance Issues
as you can see from the top, the nice value of the post_rate is 24, therefore those processes have lower priority than others.
the %CPU drop may due to other processes which have higher priority... like the "oracleiobasprd"
reset the nice value of the post_rate may help.
GOOD LUCK!!