Last active
February 25, 2021 18:47
-
-
Save jeffmccune/171cf82543abdd5bcb7644403f3b3577 to your computer and use it in GitHub Desktop.
Filestore Performance
This file contains 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
# https://cloud.google.com/filestore/docs/performance#testing_performance | |
# https://github.com/portworx/fio-tools | |
# https://gist.githubusercontent.com/wallnerryan/cb8f9946a6fb9bdc0aabd403d9550e08/raw/seqwrite.fio | |
[global] | |
ioengine=sync | |
direct=0 | |
fsync_on_close=1 | |
randrepeat=0 | |
nrfiles=1 | |
[seqwrite] | |
rw=write | |
bs=1m | |
size=20G | |
end_fsync=1 | |
fallocate=none | |
overwrite=0 | |
numjobs=1 | |
directory=/myvol | |
loops=10 | |
write_bw_log=seqwrite | |
write_lat_log=seqwrite | |
write_iops_log=seqwrite |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment