SQLite/benchmarks/run_hchc.sh

34 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
# script for executing benchmark for high contention, high conflict
# create/clear benchmark subdirectory
mkdir -p hchc
rm -rf hchc/*
# copy raw file to correct location
cp /home/kreft/benchmark/benchmarks/fill_hchc_sqlite ./fill.txt
echo "Executing hchc benchmark"
for updates in 1 2 3 4 5 6 7 8 9 10
do
# create/clear subdirectories for different parameters
dir_name="upd_$updates"
mkdir -p ./hchc/$dir_name
rm -f ./hchc/$dir_name/*.txt
# copy raw file to correct location
cp /home/kreft/benchmark/benchmarks/mixed_hchc_$((updates))_sqlite ./mixed.txt
echo "Executing runs for $updates updates"
for run in 1 2 3 4 5
do
echo "Executing run $run"
cat benchmark_run.txt | ../sqlite_binary >> ./hchc/$dir_name/messung.txt
echo "Executing run $run with hashtable"
cat benchmark_run_hash.txt | ../sqlite_binary >> ./hchc/$dir_name/messung_hash.txt
echo "Executing run $run with btree"
cat benchmark_run_btree.txt | ../sqlite_binary >> ./hchc/$dir_name/messung_btree.txt
done
done