Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
"sqlio -kR -b1024" - Reading 1-MB Block Test
How to perform tests for reading 1 MB files? I want to see the impact of file size on reading files.
✍: FYIcenter.com
If you want to see the impact of file size on reading files,
try to increase the block size from 64 KB to 1024 KB (1 MB),
and keep the other options unchanged:
C:\fyicenter\SQLIO>sqlio -LS -kR -b1024 -i64 -f64 -t1 -s300
1 thread reading for 300 secs from file testfile.dat
using 1024KB IOs over 65536KB stripes with 64 IOs per run
affinity on cpu number 0
size of file testfile.dat needs to be: 4294967296 bytes
initialization done
CUMULATIVE DATA:
throughput metrics:
IOs/sec: 53.48
MBs/sec: 53.48
latency metrics:
Min_Latency(ms): 9
Avg_Latency(ms): 18
Max_Latency(ms): 132
histogram:
ms: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24+
%: 0 0 0 0 0 0 0 0 0 0 1 1 7 5 6 8 14 15 11 7 7 8 3 1 6
Comparing to the previous test of reading 64-KB blocks, the throughput of reading 1024-KB blocks increased from 8.77 MBs/sec to 53.48 MBs/sec.
This tells us that this Windows environment is more efficient on reading larger files, because operating systems are usually designed to read the requested sector and many additional consecutive sectors of data from the device each time and cache them in RAM. If the next requested sector is in the cache, it will read it from the RAM instead of the device.
Of course, this caching mechanism helps more in the case of large files, because they are more likely to be stored in consecutive sectors.
⇒ "sqlio -kW -b1024" - Writing 1-MB Block Test
⇐ Windows Resource Monitor - Disk Writing Speed
2019-09-04, 1591🔥, 0💬
Popular Posts:
How to download and install older versions of Microsoft Office on my Mac computer? I am running macO...
How to make my presentation beautiful by applying a built-in theme provided by Office PowerPoint 200...
Why am I getting the "You now have two copies of a file" error from OneDrive for Windows? You will g...
How to connect FileZilla to an Anonymous FTP Server? If you know the server host name, you can conne...
What is "Microsoft SharePoint Server Colleague Import Add-in" COM Add-in in Outlook 2013? Should I d...