-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrun-sysbench
executable file
·102 lines (85 loc) · 2.69 KB
/
run-sysbench
1
#!/bin/bashset -uusage(){cat << EOFusage: $0 optionsThis script runs sysbench and iostat concurrently in iterations with each iteration using a higher number of threads than the last. The results are written to a new result directory each time the script is run. A file '.run_number' keeps track of the result directory numbering ensuring that each new run gets a new directory.OPTIONS: -h MySQL host [localhost] -P MySQL port [3306] -s MySQL socket [/tmp/mysql.sock] -u MySQL username [root] -p MySQL password -w ReadWrite mode (on/off) [on] -o Timeout for each sysbench run [60] -r Directory to print results to [./results] -t List of thread counts to iterate [4 8 16 32 64 128 256]EOF}host=localhostport=3306socket=/tmp/mysql.sockuser=rootpassword=readwrite=onreadonly=offtimeout=60threads="8,16,32,64,128"resultsdir=./resultsconnparams=while getopts h:P:s:u:p:w:o:r:t: namedo case $name in h) host="$OPTARG";; P) port="$OPTARG";; s) socket="$OPTARG";; u) user="$OPTARG";; p) password="$OPTARG";; w) readwrite="$OPTARG";; o) timeout="$OPTARG";; r) resultsdir="$OPTARG";; t) threads="$OPTARG";; ?) usage exit;; esacdonethreads=${threads//,/ }if [ "$readwrite" == "off" ]; then readonly=onfiif [ ! "$socket" == "/tmp/mysql.sock" ]; then connparams="--mysql-socket=$socket --mysql-user=$user --mysql-password=$password"else connparams="--mysql-host=$host --mysql-port=$port --mysql-user=$user --mysql-password=$password"fi# Determine run number for selecting an output directorymkdir -p $resultsdirrun_num=-1if [ -f "$resultsdir/.run_number" ]; then read run_num < $resultsdir/.run_numberfiif [ $run_num -eq -1 ]; then run_num=1fiif [ $run_num -lt 10 ]; then outdir=result-0$run_numelse outdir=result-$run_numfimkdir -p $resultsdir/$outdirrun_num=`expr $run_num + 1`echo $run_num > $resultsdir/.run_numberfor thread in $threadsdo # Run iostat iostat -dx 10 $(($timeout/10+1)) >> $resultsdir/$outdir/iostat.$thread.res & # Run sysbench sysbench $connparams --test=oltp --init-rng=on --num-threads=$thread \ --oltp-read-only=$readonly --oltp-dist-type=uniform --max-time=$timeout \ --max-requests=0 --percentile=99 run | tee -a $resultsdir/$outdir/sysbench.$thread.res sleep 10done