-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfill_tpcc_map.sh
More file actions
5 lines (5 loc) · 1.15 KB
/
fill_tpcc_map.sh
File metadata and controls
5 lines (5 loc) · 1.15 KB
1
2
3
4
5
fill_tpcc_map(){
tpcc_tests["cleanup_prepare_tpcc"]="sysbench ${SYSBENCH_LUA_TPCC}/tpcc.lua --mysql-host=${host} --mysql-port=${port} --mysql-user=${USER} --mysql-password=${PW} --mysql-db=${schemaname} --db-driver=mysql --tables=${TPCc_TABLES} --scale=${WHAREHOUSES} --report-interval=1 --histogram --report_csv=yes --stats_format=csv --db-ps-mode=disable "
tpcc_tests["run_tpcc_RepeatableRead"]="sysbench ${SYSBENCH_LUA_TPCC}/tpcc.lua --mysql-host=${host} --mysql-port=${port} --mysql-user=${USER} --mysql-password=${PW} --mysql-db=${schemaname} --db-driver=mysql --tables=${TPCc_TABLES} --scale=${WHAREHOUSES} --rand-type=uniform --report-interval=1 --histogram --report_csv=yes --stats_format=csv --db-ps-mode=disable --trx_level=RR --enable_purge=yes "
tpcc_tests["run_tpcc_ReadCommitted"]="sysbench ${SYSBENCH_LUA_TPCC}/tpcc.lua --mysql-host=${host} --mysql-port=${port} --mysql-user=${USER} --mysql-password=${PW} --mysql-db=${schemaname} --db-driver=mysql --tables=${TPCc_TABLES} --scale=${WHAREHOUSES} --rand-type=uniform --report-interval=1 --histogram --report_csv=yes --stats_format=csv --db-ps-mode=disable --trx_level=RC --enable_purge=yes "
}