- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Performance Bottleneck
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
12-10-2004 03:46 AM
12-10-2004 03:46 AM
I did following things..
1) Run the glance...Memory is OK at 56% and swap is utilized at 33% ...also vmstat no paging( pi,po,sr in vmstat ) so ruled out memory problems.
2) Disk IO : wait I/O is 1% in sar and also vmstat no wait stats reported
3) Avg CPU uti is 65%.. User mode is 10% and 55% is system mode. in vmstat, averge run queue is 5..so if run queue is high why cpu is only 65% busy and specially in system mode...and also in glance vfaults is 45% on average..is it bad...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2004 03:52 AM
12-10-2004 03:52 AM
Re: Performance Bottleneck
55% in system mode is not good. what is the Context switch util?
Is there any runaway processes?
Try, ps -elf|grep 'R '
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2004 03:52 AM
12-10-2004 03:52 AM
SolutionNote swap utilized at 33% really means 33% of it is reserved and no paging is going on.
You could have processes running in real time mode and sleeping, preventing the processor from doing anything else.
I'd collect some more comprehensive data (See attachment):
I wonder if you have recently changed your time slice or other kernel parameters.
A kernel review seems a good first step. Please see this doc:
http://www2.itrc.hp.com/service/cki/search.do?category=c0&docType=Security&docType=Patch&docType=EngineerNotes&docType=BugReports&docType=Hardware&docType=ReferenceMaterials&docType=ThirdParty&searchString=UPERFKBAN00000726&search.y=8&search.x=28&mode=id&admit=-1335382922+1102697480822+28353475&searchCrit=allwords
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
12-10-2004 04:12 AM
12-10-2004 04:12 AM
Re: Performance Bottleneck
here attaching vmstat output.
1) ps -efl |grep R will give any line containing letter "R" ..
Steve,
I could not open the link that u sent..will adding the CPU help me ?
any other help is appreciated..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2004 06:45 AM
12-10-2004 06:45 AM
Re: Performance Bottleneck
1) Using glance i saw the system call for java process .rate of sigcleanup is very very high it is 47320
2) most of the threads for this process are in wait reason:SYSTEM
any clue, what sigcleanup does and why it can be so high..
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2005 01:03 AM
01-30-2005 01:03 AM
Re: Performance Bottleneck
The reason why you are blocked on SYSTEM & the system % CPU is high are probably the same.
I *suspect* you have a runaway process. I saw this only yesterday (29 Jan) when a script was continually spawing and doing "ls -ltr". There was only 10-20 at any one time but is was happening so continually that the system CPU usage was 100% (20% usr 80% sys). I'm guessing you have something similar, but probably not "ll -ltr".
The way I spotted it was to look at
o ps -ef
o top
o glance.
It became apparent soon that this was the case. Once I figured out what it was I was able to trace it back using the following scripts looking for the ppid & pppid & ppppid etc...
for ppid in $(ps -el | perl -ane 'if m/\bll\b/) {print "$F[4]\n"}')
do
ps -fp $ppid
done
& the next layer
for ppid in $(ps -el | perl -ane 'if (m/\bll\b/) {print "$F[4]\n"}')
do
for pppid in $(ps -lp $ppid | egrep $ppid | perl -ane 'print "$F[4]\n"')
do
ps -fp $pppid
done
done
& the next layer...
for ppid in $(ps -el | perl -ane 'if (m/\bll\b/) {print "$F[4]\n"}')
do
for pppid in $(ps -lp $ppid | egrep $ppid | perl -ane 'print "$F[4]\n"')
do
for ppppid in $(ps -lp $pppid | egrep $pppid | perl -ane 'print "$F[4]\n"')
do
ps -fp $ppppid
done
done
done
etc...
Regards
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2005 01:07 AM
01-30-2005 01:07 AM
Re: Performance Bottleneck
Tim