January 2019
Intermediate to advanced
606 pages
15h 1m
English
Let's benchmark multiple disk write performance:
# mount | grep -i osd | wc -l
# echo 3 > /proc/sys/vm/drop_caches
# for i in `mount | grep osd | awk '{print $3}'`; do (dd if=/dev/zero of=$i/deleteme bs=10G count=1 oflag=direct &) ; done
To get the aggregated disk write performance, take the average of all the write speeds. In my case, the average comes out to be 127 MB/s:

Read now
Unlock full access