Skip to content

Commit 73d197f

Browse files
add clickbench dataset
1 parent 00fa81e commit 73d197f

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/target
2+
hits.csv

download_clickbench.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
set -e
3+
4+
echo "downloading..."
5+
curl -L -o hits.csv.gz "https://datasets.clickhouse.com/hits_compatible/hits.csv.gz"
6+
7+
echo "decompressing..."
8+
gunzip hits.csv.gz
9+
10+
echo "done: hits.csv"

0 commit comments

Comments
 (0)