mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
30 lines
1.0 KiB
Bash
Executable File
30 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Install
|
|
|
|
wget https://github.com/questdb/questdb/releases/download/6.4.1/questdb-6.4.1-rt-linux-amd64.tar.gz
|
|
tar xf questdb*.tar.gz
|
|
questdb-6.4.1-rt-linux-amd64/bin/questdb.sh start
|
|
|
|
# Import the data
|
|
|
|
wget --continue 'https://datasets.clickhouse.com/hits_compatible/hits.csv.gz'
|
|
gzip -d hits.csv.gz
|
|
|
|
curl -G --data-urlencode "query=$(cat create.sql)" 'http://localhost:9000/exec?timings=true'
|
|
time curl -F data=@hits.csv 'http://localhost:9000/imp?name=hits'
|
|
|
|
# 27m 47.546s
|
|
|
|
sed -i 's/query.timeout.sec=60/query.timeout.sec=6000/' .questdb/conf/server.conf
|
|
questdb-6.4.1-rt-linux-amd64/bin/questdb.sh stop
|
|
questdb-6.4.1-rt-linux-amd64/bin/questdb.sh start
|
|
|
|
./run.sh 2>&1 | tee log.txt
|
|
|
|
du -bcs .questdb/db/hits
|
|
|
|
cat log.txt | grep -P '"timings"|"error"|null' | sed -r -e 's/^.*"error".*$/null/; s/^.*"compiler":([0-9]*),"execute":([0-9]*),.*$/\1 \2/' |
|
|
awk '{ print ($1 + $2) / 1000000000 }' | sed -r -e 's/^0$/null/' |
|
|
awk '{ if (i % 3 == 0) { printf "[" }; printf $1; if (i % 3 != 2) { printf "," } else { print "]," }; ++i; }'
|