- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Find if the disk is asked for more than it can del...
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-16-2006 10:04 PM
11-16-2006 10:04 PM
I would like to find a command similar to the Vms command
$ monitor disk/item=queue
See for the doc
http://www.pi-net.dyndns.org/docs/openvms0732/732final/6491/6491pro_009.html
This shows if there is a queue length, if when an I/O is done on a disk, the info is delivered immediately, or after a (short or long wait).
For example, a slow disk will be able to deliver 60 I/O (of 16 K) /second, when a Raid 5 of 5 fast disks will be able to deliver much more.
When this Vms command shows more than 1 for the queue length, I know that the users issuing the I/O will wait, as the disk is asked to do more than it can.
I have found that
iostat -x 10 10
, for example shows me the I/O on the "disks".
How do I find if there is a queue length on a disk ?
Thanks for any hint.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2006 11:10 PM
11-16-2006 11:10 PM
Re: Find if the disk is asked for more than it can deliver
sar
or
sar -q ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2006 11:50 PM
11-16-2006 11:50 PM
SolutionIn the 'iostat -x' output is the column avgqu-sz. According to the manpage:
avgqu-sz
The average queue length of the requests that were issued to the device.
Isn't that what you're looking for?
Vic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2006 11:56 PM
11-16-2006 11:56 PM
Re: Find if the disk is asked for more than it can deliver
Thanks a lot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2006 12:00 AM
11-17-2006 12:00 AM
Re: Find if the disk is asked for more than it can deliver
avgqu-sz await svctm
is want I want.
And all 3 are interesting.