mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
15 lines
326 B
Bash
Executable File
15 lines
326 B
Bash
Executable File
#!/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
|