- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: sar vs perfview
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
11-23-2000 12:00 PM
11-23-2000 12:00 PM
sar -d displays a column %wio. which metric in glance and specially in perfview shows this information.
%wio shows values greater than 60%. I want to investigate further disk bottleneck.
Any suggestions?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2000 04:46 PM
11-23-2000 04:46 PM
Re: sar vs perfview
some users have also expressed interest in sar -u's
"wio" metric, and the fact that this metric is not in glance or
measureware. Sar's wio metric is an estimate of cpu time "idle, but
waiting for I/O to complete". The instrumentation that glance uses (the
KI/MI) provides more accurate cpu statistics in general because they are
trace-based not sample-based, but idle cpu time is not broken down.
Glance's idle cpu time will be roughly equal to sar's idle plus wio.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2000 02:44 AM
11-24-2000 02:44 AM
Re: sar vs perfview
Also check out these documents: S3100002312A,B and C (Sys Adm: determining the cause of system performance problems).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2000 03:37 AM
11-24-2000 03:37 AM
SolutionThe %wio from sar is a very useful global performance metric. I wish PerfView/glance had it also.
Its very valuable in determining your systems overall disk i/o performance. I can give you a guide, anything over 20 and your system is completely i/o bound, <10 is ok, < 5 is good. At HP we ensure all our important servers run a %wio <5.
If yours is indeed 60 I would begin a plan to add faster disks/stripe everything etc. once youve used sar or Perfview to determine which disks/lvol is causing the large bottleneck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2000 07:41 AM
11-26-2000 07:41 AM
Re: sar vs perfview
I had a K570 running with 2 FC30 arrays. %wio was consistently in the 50% range during peak hours. We then moved to a V2500 and XP256. %wio is now in the 30% range. Better, but, still bad. However, i/o performance is good. If we check the access times from our applications they are sub-second.
When the system was installed the kernel parameter dbc_max_pct was left at the default of 50. This means that the system can use up to 50% of RAM for buffer cache. This is typically too high. I decreased dbc_mac_pct to 30 and %wio shot up to 70%. I needed that buffer cache.
A second part of this is that our system is an Oracle database server. There is a performance hit called double buffering. Oracle caches writes in the SGA. Then depending on how the file systems are mounted, it can also write to your buffer cache. Two i/o's. If you mount the file systems with I believe it is the "mincache=direct" option it will not use buffer cache. Your database writes to the SGA which then writes directly to the disk, by-passing the system buffer cache. this is much faster.
When I tried this %wio again jumped up to 50%. Obviously I did something wrong and I have not gone back to work with it again. What it does show is that buffer cache usage plays a large role in the %wio metric. And, while ours is still high the system performs well. While slow disks will create an i/o bottleneck there is often times more than one problem.