ClickHouse/benchmark/cratedb/run.sh

14 lines
277 B
Bash
Raw Normal View History

2022-06-27 00:53:55 +00:00
#!/bin/bash
TRIES=3
cat queries.sql | while read query; do
sync
echo 3 | sudo tee /proc/sys/vm/drop_caches
echo "$query";
for i in $(seq 1 $TRIES); do
2022-06-27 01:48:57 +00:00
psql -U crate -h localhost --no-password -t -c '\timing' -c "$query" | grep 'Time'
2022-06-27 00:53:55 +00:00
done;
done;