- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Which Processes causing High disk 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
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
08-17-2009 06:01 PM
08-17-2009 06:01 PM
Which Processes causing High disk utilization
The Disk Utilization of the nlxsl167 has increased to about 100% since August 2nd (
Is it possible to find which process(es) causes this high disk utilization?
Can anybody help me to sort it out, Is is possible to find out which preocesses were using high disk utilization on 2nd august.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2009 06:18 PM
08-17-2009 06:18 PM
Re: Which Processes causing High disk utilization
Gather some general data:
http://www.hpux.ws/?p=6
Note these utilities are sar based and not good for directly identifying the process. They do identify the resource in question. If its the disk you stick your oracle data on you are close to identifying the process.
glance/gpm has a good tool set for identifying the process doing the deed. There is a 60 day trial version on the Core OS DVD
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
08-17-2009 06:19 PM
08-17-2009 06:19 PM
Re: Which Processes causing High disk utilization
Current Disk utilization can be found by running glance.
You need to check perfview performance data to get the historical data, launch pv in graphical mode and dig-down to get the desired performance data, export the data in excel format if you wish to or run extract from the command line.
You will find alot of threads talking about pv/extract/
Cheers!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2009 06:59 PM
08-17-2009 06:59 PM
Re: Which Processes causing High disk utilization
You can use:
# sar -d 5 10 -- to get the stats for all the disks
If you have identified the disks with high utilization, then look for what kind of LV they are associated with:
# strings /etc/lvmtab -- to identify the volume group associated with the disks.
# lvdisplay -v /dev/vgXX/lvolX -- where x represents the lvol name. This will tell you what disks are associated with the logical volume.
# bdf -- to see if this volume groups files sytems are full ( > 85%)
# more /etc/fstab -- to determine the file system type assiciated with the lvol/mountpoint
You can try doing following to improve disk I/O:
1. Reduce the volume of data on the disk to less than 90%
2. Stripe the data across disks to improve I/O speed
3. If you are using Online JFS , run 'fsadm' to defragment the extents.
Hope this helps..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2009 07:15 AM
08-18-2009 07:15 AM
Re: Which Processes causing High disk utilization
Do this sir:
sar -d 5 10 (it will give you your busiest disk or disks - look for high blk/s or %busy)
find what LVM VG or VxVM DG the disk or disks belong to (vgdisplay or vxprint)
For each logical volume (lvm) or volume (vxvm) -- find the coresponding mount points (bdf)
Do an fuser for each filesystem -- it will give you the process IDs of active users on the filesystem
Pretty convuluted but it can help you hunt down the culprit/busy process.
However -- 90% of the time, the IO hoggers would be your busiest/long running process which you can find using "top" whic should be built-in to your HP-UX OE.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2009 07:27 AM
08-18-2009 07:27 AM
Re: Which Processes causing High disk utilization
If you need the analysis of historical data, you need to have been logging the performance data using measureware or maybe with some other tool your enterprise environment is using for performance analysis.
ls -l /var/opt/perf/datafiles/log*
if you see large files with today's timestamp, then you might be in luck. You can generate an output using extract utility. Unfortunately, I did not and do not use this utility to help you there to tell the exact syntax of it. You need to do some reading on the man pages for extract to see how you can extract the information you are looking for.
Good luck
UNIX because I majored in cryptology...