在購買云服務(wù)器的時候,會比較關(guān)注磁盤的IO性能,當(dāng)然是選擇讀寫快的,在Windows中有不同的工具來測試,但在Linux還是用命令來檢測了,以下兩條命令分別為磁盤的隨機(jī)性能測試,分別為讀和寫。能較快的反映出的磁盤讀寫性能,做個備忘。
軟件性能
fio 是最佳磁盤性能測試工具,磁盤IO是檢查磁盤性能的重要指標(biāo),可以按照負(fù)載情況分成照順序讀寫,隨機(jī)讀寫兩大類。
ddif=/dev/zero of=/root/test bs=4kcount=524288 (創(chuàng)建2G文件)
1、測試順序讀性能
fio --filename=/root/test -iodepth=64 -ioengine=libaio --direct=1 --rw=read --bs=1m --size=2g --numjobs=4 --runtime=10 --group_reporting --name=test-read
2、測試順序?qū)懶阅?br/>fio -filename=/root/test -iodepth=64 -ioengine=libaio -direct=1 -rw=write -bs=1m -size=2g -numjobs=4 -runtime=20 -group_reporting -name=test-write
3、測試隨機(jī)讀性能
fio -filename=/root/test -iodepth=64 -ioengine=libaio -direct=1 -rw=randread -bs=4k -size=2G -numjobs=64 -runtime=20 -group_reporting -name=test-rand-read
4、測試隨機(jī)寫性能
fio -filename=/root/test -iodepth=64 -ioengine=libaio-direct=1 -rw=randwrite -bs=4k -size=2G -numjobs=64 -runtime=20-group_reporting -name=test-rand-write
參數(shù)說明
filename=/root/test 測試文件名稱,通常選擇需要測試的盤的data目錄。
direct=1 測試過程繞過機(jī)器自帶的buffer。使測試結(jié)果更真實。
rw=randwrite 測試隨機(jī)寫的I/O
rw=randrw 測試隨機(jī)寫和讀的I/O
bs=4k 單次io的塊文件大小為4k
size=2g 本次的測試文件大小為2g,以每次4k的io進(jìn)行測試。
numjobs=64 本次的測試線程為64.
runtime=20 測試時間為20秒,如果不寫則一直將2g文件分4k每次寫完為止。
報告如何查看:
fio的結(jié)果報告內(nèi)容豐富,我們主要關(guān)心的是兩項:
磁盤的吞吐量bw,這個是順序讀寫考察的重點
磁盤的每秒讀寫次數(shù)iops,這個是隨機(jī)讀寫考察的重點
比如,下面是4個測試的結(jié)果部分截。
test-read:(groupid=0, jobs=4): err= 0: pid=4752
read : io=839680KB, bw=76823KB/s, iops=75 , runt= 10930msec
順序讀,帶寬76823KB/s,iops 75
test-write:(groupid=0, jobs=4): err= 0: pid=4758
write: io=899072KB, bw=42854KB/s, iops=41 , runt= 20980msec
順序?qū)懀瑤?2854KB/s, iops=41
test-rand-read:(groupid=0, jobs=64): err= 0: pid=4619
read : io=72556KB, bw=3457.4KB/s, iops=864 , runt= 20986msec
隨機(jī)讀,帶寬3457.4KB/s, iops=864
test-rand-write:(groupid=0, jobs=64): err= 0: pid=4685
write: io=129264KB, bw=6432.4KB/s, iops=1608 , runt= 20097msec
隨機(jī)寫,帶寬6432.4KB/s, iops=1608
- PC官方版
- 安卓官方手機(jī)版
- IOS官方手機(jī)版