Created
February 13, 2023 19:08
-
-
Save mdcallag/270e26dbf676f80397fb2c28128c7af2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This script is invoked twice as: | |
| bash r.sh 8 20000000 600 nvme1n1 1 1 32 | |
| bash r.sh 8 20000000 600 nvme1n1 0 1 32 | |
| --- r.sh | |
| ntabs=$1 | |
| nrows=$2 | |
| nsecs=$3 | |
| dev=$4 | |
| # 1 if using PK, 0 otherwise | |
| usepk=$5 | |
| # 1 for prepared statements, 0 otherwise | |
| prep=$6 | |
| shift 6 | |
| bash cmp_rx.sh $ntabs $nrows $nsecs ~/d ~/sysb /data/m/fbmy/data/.rocksdb $dev $usepk $prep $@ | |
| bash cmp_in.sh $ntabs $nrows $nsecs ~/d ~/sysb /data/m/my/data $dev $usepk $prep $@ | |
| bash cmp_pg.sh $ntabs $nrows $nsecs ~/d ~/sysb /data/m/pg/base $dev $usepk $prep $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment