You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
594 B
19 lines
594 B
#! /usr/bin/bash
|
|
#inspired by Sun Knudsen
|
|
|
|
# create the test files
|
|
echo "preparing tests"
|
|
sysbench fileio --file-total-size=8G prepare > /dev/null
|
|
|
|
# Test with 16K block size, random read/write
|
|
echo "run test with 16K block size"
|
|
sysbench fileio --file-block-size=16K --file-total-size=8G --file-test-mode=rndrw --threads=$(nproc) run
|
|
|
|
# Test with 1M block size, random read/write
|
|
echo "run test with 1M block size"
|
|
sysbench fileio --file-block-size=1M --file-total-size=8G --file-test-mode=rndrw --threads=$(nproc) run
|
|
|
|
# cleanup the test files
|
|
sysbench fileio --file-total-size=8G cleanup
|
|
|
|
|
|
|