- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- High Disk I/O
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
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
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
тАО04-01-2008 06:25 AM
тАО04-01-2008 06:25 AM
The Avg queue length is 0.99
I have identified the disk that has it.
How can I fix it?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-01-2008 06:38 AM
тАО04-01-2008 06:38 AM
SolutionHow about some more info.
Why type of disk ?
How is it attached ?
What type of disk configuration ?
What type of application ?
What is the service time as shown by sar -d.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-01-2008 08:22 AM
тАО04-01-2008 08:22 AM
Re: High Disk I/O
Let's say it's the disk that supports writing logfiles for Oracle. And you have a very busy Oracle database running. I would not be surprised to see high I/O. So spreading it across multiple disks will help. But you will still see higher than usual I/O simply because of what is hitting it.
Now if on the disk has things like a very busy dbf file(s) and folks are dropping other files out there. Than you need to have your DBA's move those dbf files to mountpoints (with different disk) you tell them to write. Same if folks are dropping data nilly-willy everywhere.
Get control of where the data gets put - and enforce it!
They want performance - you control what gets written to which disk.
Regards,
Rita
....cause it's not just a woman thing...it's a HPUX Admin control things !...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-01-2008 07:22 PM
тАО04-01-2008 07:22 PM
Re: High Disk I/O
If you cannot get the code fixed, then change all the disks to use 4Gb fiber, install a SAN switch to configure parallel paths and buy a high end disk array with dozens of GB of RAM. The bad code will still read/write inefficiently but the dramatic increase in speed will make the problem less obvious.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-03-2008 06:46 AM
тАО04-03-2008 06:46 AM
Re: High Disk I/O
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-03-2008 10:35 PM
тАО09-03-2008 10:35 PM
Re: High Disk I/O
think its a difficult to find it which process is using more disk. but u can apply some logic like..
1)first check iostat o/p for a disk which is heavily utilised suppose c0t0d0
2)lvdisplay -v |grep "c0t0d0"
3)u will get the idea like this disk is a member of this lv
4)use #bdf |grep
5)then from lv u will get the idea regarding File system name
6)then check which are the users are using that FS
#fuser -cu
7)you will get the pid
8)then grep that pid like
ps -ef |grep
9)it will show the which proccess is running and owner of that proceess.
=========================================
so doing aboe activity u will get idea
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-03-2008 10:35 PM
тАО09-03-2008 10:35 PM
Re: High Disk I/O
I think its a difficult to find it which process is using more disk. but u can apply some logic like..
1)first check iostat o/p for a disk which is heavily utilised suppose c0t0d0
2)lvdisplay -v |grep "c0t0d0"
3)u will get the idea like this disk is a member of this lv
4)use #bdf |grep
5)then from lv u will get the idea regarding File system name
6)then check which are the users are using that FS
#fuser -cu
7)you will get the pid
8)then grep that pid like
ps -ef |grep
9)it will show the which proccess is running and owner of that proceess.
=========================================
so doing aboe activity u will get idea
Regards
Prashant