Last active
September 13, 2016 03:20
-
-
Save grifferz/fe8628db2dcd6fe2ce25f5c5c43283d4 to your computer and use it in GitHub Desktop.
fio job file for basic idea of disk/fs performance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global] | |
fallocate=none | |
directory=/pool/fio | |
size=1g | |
runtime=300 | |
time_based | |
end_fsync=1 | |
ioengine=libaio | |
direct=1 | |
[seqread-128k] | |
rw=read | |
bs=128k | |
iodepth=1 | |
stonewall | |
[seqwrite-128k] | |
rw=write | |
bs=128k | |
iodepth=1 | |
stonewall | |
[randread-4k] | |
rw=randread | |
bs=4k | |
iodepth=16 | |
random_distribution=pareto:0.9 | |
stonewall | |
[randwrite-4k] | |
rw=randwrite | |
bs=4k | |
iodepth=16 | |
random_distribution=pareto:0.9 | |
stonewall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment