Last active
December 31, 2015 05:58
-
-
Save kshcherban/7944097 to your computer and use it in GitHub Desktop.
fio example config for random read test
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
| [random-read] | |
| # Random read | |
| rw=randread | |
| # Test file size | |
| #size=1g | |
| # Use direct operations | |
| direct=1 | |
| # Disable buffers | |
| buffered=0 | |
| # Run time in seconds | |
| runtime=60 | |
| # Test hard drive | |
| filename=/dev/sda | |
| # Block size, used default value | |
| bs=4096 | |
| # Number of parallel threads | |
| numjobs=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment