Module io_benchmarks   Copy item path  Source  ReadRandomCold   A benchmark that measures how long random pread calls take to a file that should not already
be cached in memory. ReadRandomWarm   A benchmark that measures how long random pread calls take to a file that should already be
cached in memory. ReadSequentialCold   A benchmark that measures how long read calls take to a file that should not already be cached
in memory. ReadSequentialWarm   A benchmark that measures how long read calls take to a file that should already be cached in
memory. ReadSparseCold   A benchmark that measures how long pread calls take to a sparse file that should not already
be cached in memory. The file’s sparseness is designed to defeat the gains of readahead without
making an extremely large file, but will also result in testing access to many small extents. WriteRandomCold   A benchmark that measures how long random pwrite calls take to a new file. WriteRandomFsyncCold    A benchmark that measures how long ’writeandfsync` calls take to a new file. WriteRandomFsyncWarm    A benchmark that measures how long write and fsync calls take when overwriting a
file that should already be in memory. WriteRandomWarm   A benchmark that measures how long random pwrite calls take when overwriting a file that
should already be in memory. WriteSequentialCold   A benchmark that measures how long write calls take to a new file. WriteSequentialFsyncCold    A benchmark that measures how long ’writeandfsync` calls take to a new file. WriteSequentialFsyncWarm    A benchmark that measures how long write and fsync calls take when overwriting a
file that should already be in memory. WriteSequentialWarm   A benchmark that measures how long write calls take when overwriting a file that should
already be in memory.