- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: testing rw speed for HPUX HD
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-18-2006 08:22 PM
11-18-2006 08:22 PM
testing rw speed for HPUX HD
Like the command "hdparm" on Linux.
http://www.justlinux.com/nhf/Hardware/Hard_Drive_Speed_Tweak_for_Linux.html
Thx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2006 05:09 AM
11-19-2006 05:09 AM
Re: testing rw speed for HPUX HD
I did not see a port of hdparm ro HP-UX yet, but you can give 'dd' a try.
Read speed can be determined always:
To read 100mb of data, use
time dd if=/dev/dsk/xxxx of=/dev/null bs=1024 count=100
If there is space on a disk not already used for logical volumes, create a new one using (part) this data (e.g. 100MB), do NOT create a filesystem and then try
time dd if=/dev/zero of=/dev/vgxx/rlvolyy bs=1024k count=100
mfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2006 03:50 PM
11-19-2006 03:50 PM
Re: testing rw speed for HPUX HD
A free, comprehensive tool to measure IO at:
www.iozone.org
There's an HP-UX tarball for it....
There is also HP DiskBench (officially unsupported, but a good utility) on hps DSPP website.
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 12:38 AM
11-22-2006 12:38 AM
Re: testing rw speed for HPUX HD
I made two tests :
1) I created a new lvm on EVA and made a write test:
My_Server1:/>time dd if=/dev/zero of=/dev/vg_test/lvol6 bs=1024k count=100
100+0 records in
100+0 records out
real 1:07.7
user 0.0
sys 1.5
So it writes 100Mb at a speed of (1024*100/67)=1528.358 Kbites/s
2)On another server connected to a disk array with one FiberChannel i get these results :
My_Server2:/ >#time dd if=/dev/zero of=/dev/vg_test/lvol24 bs=1024k count=10
10+0 records in
10+0 records out
real 11.2
user 0.0
sys 0.3
So it writes 100Mb at a speed of (1024*100/11)=9309.09 Kbites/s
So the EVA 8 times less quick than the simple disque array, do think those results are logiques ?
Best regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 12:47 AM
11-22-2006 12:47 AM
Re: testing rw speed for HPUX HD
Is server1 the same as server2 - CPU, HBA, memory, OS, etc?
Also, try doing your dd tests using RAW device: of=/dev/vg_test/rlvol1
And one more thing, make your test size (and test lvol larger --- say larger than the memory of your system)
I would think there should be no difference or only a minute one between the 2 arrays.
The reasons of such a wide disparity that I can think of are:
1.) EVA on server1 is loaded/taxed
2.) Your FC config (HBA, paths, etc.) on server1 is faulty...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 01:39 AM
11-22-2006 01:39 AM
Re: testing rw speed for HPUX HD
your 2nd try used count=10, not count=100 -
Thats a factor of 10.
mfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 02:03 AM
11-22-2006 02:03 AM
Re: testing rw speed for HPUX HD
One thing for certain -- the EMC on Server2 will simply outgone the EVA for such a measly 100MB dd test. Why? I am dead sure your EMC has Gigabytes of Cache on it whilst the EVA 5K only has about 1GB per controller...
Try a bigger LVOL.. say 10GB... and you;ll be surprised, the gap will narrow...
Again use RAW lvols and also try varying your blocksize...