- Community Home
- >
- Storage
- >
- Legacy
- >
- Disk
- >
- Disk speed measure - pat - impossible result
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
08-28-2003 02:36 AM
08-28-2003 02:36 AM
Disk speed measure - pat - impossible result
Result:
[root@geledwh1:~]$ ./pat -f /db30_dw1p
read 5200.02 MB from 2 files in 35.69 seconds, 145.69 MB/sec
[root@geledwh1:~]$ ./pat -s /dev/vg10dwh/lvol35
read 512 MB at /dev/vg10dwh/lvol35 start in 29.72 seconds, 17.23 MB/sec
[root@geledwh1:~]$ bdf /db30_dw1p
Filesystem kbytes used avail %used Mounted on
/dev/vg10dwh/lvol35 10240000 5328238 4758276 53% /db30_dw1p
This speed is just irreal. And believe me this data just can't be in EMC's cache.
Can somebody explaim me these? I would really appreciate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2003 02:40 AM
08-28-2003 02:40 AM
Re: Disk speed measure - pat - impossible result
Eugeny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2003 04:10 AM
08-28-2003 04:10 AM
Re: Disk speed measure - pat - impossible result
[root@geleclf1:~]$ timex dd if=/dev/dsk/c4t7d2 of=/dev/null bs=64k count=1000
1000+0 records in
1000+0 records out
real 4.11
user 0.00
sys 0.90
[root@geleclf1:~]$ timex dd if=/dev/rdsk/c4t7d2 of=/dev/null bs=64k count=1000
1000+0 records in
1000+0 records out
real 0.63
user 0.00
sys 0.05
Why is it so significant the difference? Why is it possible to dd from dsk/lvol?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2003 06:20 AM
08-28-2003 06:20 AM
Re: Disk speed measure - pat - impossible result
# timex dd if=/dev/dsk/c0t4d0 of=/dev/null bs=64k count=1000
1000+0 records in
1000+0 records out
real 50.21
user 0.03
sys 6.02
# timex dd if=/dev/rdsk/c0t4d0 of=/dev/null bs=64k count=1000
1000+0 records in
1000+0 records out
real 13.95
user 0.02
sys 0.35
So you can see that results are the same. Thus it's not a disk array issue. Character type device looks like faster that block one
Eugeny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2003 04:28 AM
08-29-2003 04:28 AM
Re: Disk speed measure - pat - impossible result
http://www.iozone.org
And specify a file size range so that the largest file is bigger than the amount of OS memory, and disk array cache. Then you could see all of the cache effects, as well as the underlying I/O subsystem performance.
Never measure raw devices as they are meaningless to real applications that run on top of the filesystem.
Never use "dd" as a perf tool.
Never use any proprietary perf tool.
Enjoy,
Don
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2003 07:19 AM
09-01-2003 07:19 AM
Re: Disk speed measure - pat - impossible result
Block devices are difficult to performance test with because the kernel can/will reschedule the I/Os, and execute them in a different order. They also uses the system's buffer cache.
The raw devices are better because they do what you tell them to - which is do a physical I/O for each and every read() or write() your test executes, and it blocks your process(s) until the I/O is complete, so you can calculate response times. It's a much simpler interface, so it's a little faster.
The use of a commercially available, freeware benchmark (such as iozone, mentioned previously) is an excellent idea. They are much better at simulating different workloads, so you can test more than just sequential I/O - you can look at random as well, and they give better metrics.
Good luck,
Vince