koder aka kdanilov | 1b0d350 | 2015-02-03 21:32:31 +0200 | [diff] [blame] | 1 | #!/bin/bash |
2 | |||||
3 | set -x | ||||
4 | set -e | ||||
5 | |||||
6 | CMD1="--type iozone -a write --iodepth 8 --blocksize 4k --iosize 40M -s" | ||||
7 | CMD2="--type fio -a write --iodepth 8 --blocksize 4k --iosize 4M -s" | ||||
8 | |||||
9 | python run_rally_test.py -l -o "$CMD1" -t io-scenario iozone 2>&1 | tee ceph_results.txt | ||||
10 | python run_rally_test.py -l -o "$CMD2" -t io-scenario fio 2>&1 | tee -a ceph_results.txt | ||||
11 |