- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- IO testing and tuning
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
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
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
тАО01-03-2008 09:29 AM
тАО01-03-2008 09:29 AM
hope everyone had a good christmas and newyear .... I worked for most of it but will be getting lots of $$$$$ (happy days) ...
Let me get back to the question in hand:
I want to play around with system IO tuning and understand some of the parameters and the effects of changing. I have a couple crash and burn servers running hpux and AIX and I was hoping someone had a program or could point me to some method where I can increae the IO on the disks to 100% and create bottlenecks etc so I can determine different tuning methods.
does anyone have such a program?
many thanks
Chris
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2008 09:38 AM
тАО01-03-2008 09:38 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2008 09:40 AM
тАО01-03-2008 09:40 AM
Re: IO testing and tuning
a) Bonnie+
http://www.coker.com.au/bonnie++/
b) IOzone
http://www.iozone.org/
c) IOstone
http://www.acnc.com/benchmarks/iostone.zip
d) IObench
http://www.acnc.com/benchmarks/iobench.tar.Z
e) Bonnie
http://www.acnc.com/benchmarks/bonnie.tar.gz
f) nbench
http://www.tux.org/~mayer/linux/bmark.html
from the url
http://forums12.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1199381950289+28353475&threadId=1187415
Hasan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2008 09:40 AM
тАО01-03-2008 09:40 AM
Re: IO testing and tuning
Creating I/O on disks can be as simple as using 'dd'. For example, to read a disk in block sizes of 1024 characters having skipped 2048 blocks before starting and quit after reading 100 blocks, do:
# dd if=/dev/rdsk/c0t6d0 of=/dev/null bs=1024 iseek=2048 count=100
Notice the use of the raw device file. This means that you don't involve the Unix buffer cache in your reads.
As for writing, you could use '/dev/zero' as your input ('if') file, BUT MAKE VERY SURE that your output disk is not one with any viable data, since you will be smearing zeros all over it!
Clearly, a script with a number of 'dd' processes can be quickly hacked together to build up so I/O. As always, see the manpages for 'dd(1)' for more information.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-03-2008 01:27 PM
тАО01-03-2008 01:27 PM
Re: IO testing and tuning
Remember to play around with Block Size and the filesystem cache (dbc_min_pct and dbc_max_pct in 11i until v3 then it is fs something).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-07-2008 05:11 AM
тАО01-07-2008 05:11 AM
Re: IO testing and tuning
I have been running the dd command to test times and activity so thanks James.
and also thanks for the suggested programs.
Chris.