mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
15 lines
326 B
Bash
15 lines
326 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Install
|
||
|
|
||
|
curl https://clickhouse.com/ | sh
|
||
|
|
||
|
# wget --continue 'https://datasets.clickhouse.com/hits_compatible/hits.parquet'
|
||
|
seq 0 99 | xargs -P100 -I{} bash -c 'wget --continue https://datasets.clickhouse.com/hits_compatible/athena_partitioned/hits_{}.parquet'
|
||
|
|
||
|
# Run the queries
|
||
|
|
||
|
./run.sh
|
||
|
|
||
|
du -b hits.parquet
|