- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Need to test read performance
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
10-05-2006 08:15 AM
10-05-2006 08:15 AM
I want to test read performance - so I thought I would copy the 50GB file to /dev/null
Except /dev/null resides in a non largefiles supported file system.
Any suggestions?
I was thinking maybe just dd the lvol to /dev/null - but would that be a sufficient read test?
Thanks...Geoff
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2006 08:25 AM
10-05-2006 08:25 AM
SolutionYou should be able to do something like this:
timex dd if=mybigfile bs=256k of=/dev/null
However, if you are really wantingh to determine disk read speed then I would bypass the filesystem and buffer cache and do something like:
timex dd if=/dev/vg10/rlvol1 bs=256k of=/dev/null
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2006 08:26 AM
10-05-2006 08:26 AM
Re: Need to test read performance
for benchmarking disk performance, you might want to try iozone, downloadable from www.iozone.org
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2006 08:28 AM
10-05-2006 08:28 AM
Re: Need to test read performance
Here's what I did:
timex dd if=/oracle/IPR/sapdata05/test.50GB of=/dev/null bs=8k
8K as that is what Oracle uses.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2006 01:59 PM
10-05-2006 01:59 PM
Re: Need to test read performance
[Great to have seen you in Houston two weeks ago!]
8K may be the page size for your database, and the iosize for 'sequential reads'.
However for reading big chunks of data for tablescans Oracle will read 'multi_block' pages at a time.
So maybe bs=128k may be more correct.
Ultimately you should ofcourse just have Oracle actually read the data and measure that! Using transportable tablespace it might actually be relatively easy to have a standard sample benchmark tablespace which you copy to various storage locations and read from (and or write to).
Hope this helps,
Hein van den Heuvel
HvdH Performance Consulting