Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions quickstart/load-htap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ if [[ $SOURCE == */database/* ]]; then
backupid=undefined
if [[ $SCALE == "100" ]]; then
backupid=2235534337
elif [[ $SCALE == "250" ]]; then
backupid=355638273
elif [[ $SCALE == "1000" ]]; then
backupid=1384221697
elif [[ $SCALE == "10000" ]]; then
Expand Down
8 changes: 5 additions & 3 deletions run-benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ show_usage() {
echo
echo -e "\t-d, --restoreDirectory \t\tRestore directory if action is restore. Defaults to s3a://splice-benchmark-data/database/HTAP/$SCALE "
echo
echo -e "\t-b, --backupId \t\t\tBackup id of the restored schema. Defaults for scale 100 to 2235534337, scale 1000 to 1384221697 and scale 10000 to 39810049 "
echo -e "\t-b, --backupId \t\t\tBackup id of the restored schema. Defaults for scale 100 to 2235534337, scale 250 to 355638273, scale 1000 to 1384221697 and scale 10000 to 39810049 "
echo
echo -e "\t-x, --restoreSouceSchema \tSchema of the restored database. Defaults to htap "
echo -e "\t-x, --restoreSourceSchema \tSchema of the restored database. Defaults to htap "
echo
echo -e "\t-y, --dataDirectory \t\tIf creating a database, the location of the import files. Defaults to s3a://splice-benchmark-data/flat/HTAP/htap-$SCALE "
echo
Expand Down Expand Up @@ -155,7 +155,7 @@ while (( "$#" )); do
EXECUTE=$2
shift 2
;;
-x|--restoreSouceSchema)
-x|--restoreSourceSchema)
RESTORE_SOURCE_SCHEMA=$2
shift 2
;;
Expand Down Expand Up @@ -198,6 +198,8 @@ if [[ "$ACTION" = "restore" ]]; then
then
if [[ $SCALE == "100" ]]; then
BACKUP_ID=2235534337
elif [[ $SCALE == "250" ]]; then
BACKUP_ID=355638273
elif [[ $SCALE == "1000" ]]; then
BACKUP_ID=1384221697
elif [[ $SCALE == "10000" ]]; then
Expand Down