mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-20 01:44:19 +01:00
48 lines
1.5 KiB
Bash
Executable File
48 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
# This is a modified version of the clickbench benchmark script from:
|
|
# https://github.com/ClickHouse/ClickBench/tree/main/sqlite
|
|
# It runs the queries in the queries.sql file, and prints the results for both tursodb and Sqlite.
|
|
|
|
TRIES=1
|
|
|
|
REPO_ROOT=$(git rev-parse --show-toplevel)
|
|
RELEASE_BUILD_DIR=$REPO_ROOT/target/release
|
|
CLICKBENCH_DIR=$REPO_ROOT/perf/clickbench
|
|
|
|
# Function to clear system caches based on OS
|
|
clear_caches() {
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
# macOS
|
|
sync
|
|
sudo purge
|
|
else
|
|
# Linux
|
|
sync
|
|
echo 3 | sudo tee /proc/sys/vm/drop_caches > /dev/null
|
|
fi
|
|
}
|
|
|
|
# Clear caches once
|
|
echo "The script might ask you to enter the password for sudo, in order to clear system caches."
|
|
clear_caches
|
|
count=1;
|
|
|
|
# Run the queries, skipping any that are commented out
|
|
# Between each invocation to tursodb/Sqlite, purge the caches
|
|
grep -v '^--' "$CLICKBENCH_DIR/queries.sql" | while read -r query; do
|
|
|
|
echo "$count $query"
|
|
((echo "$count $query") 2>&1) | tee -a clickbench-tursodb.txt > /dev/null
|
|
((echo "$count $query") 2>&1) | tee -a clickbench-sqlite3.txt >/dev/null
|
|
for _ in $(seq 1 $TRIES); do
|
|
clear_caches
|
|
echo "----tursodb----"
|
|
((time "$RELEASE_BUILD_DIR/tursodb" --quiet -m list "$CLICKBENCH_DIR/mydb" <<< "${query}") 2>&1) | tee -a clickbench-tursodb.txt
|
|
clear_caches
|
|
echo
|
|
echo "----sqlite----"
|
|
((time sqlite3 "$CLICKBENCH_DIR/mydb" <<< "${query}") 2>&1) | tee -a clickbench-sqlite3.txt
|
|
done;
|
|
count=$(($count+1))
|
|
done;
|