Skip to content

Commit df82af7

Browse files
wget progress will be friendly for scripts
1 parent c7e96e8 commit df82af7

File tree

82 files changed

+107
-108
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+107
-108
lines changed

alloydb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Note: As of current date, AlloyDB can only be accessed by setting up Alloy Auth
2626
2727
4. Download public dataset and required scripts
2828
```bash
29-
wget --continue 'https://datasets.clickhouse.com/hits_compatible/hits.tsv.gz'
29+
wget --continue --progress=dot:giga 'https://datasets.clickhouse.com/hits_compatible/hits.tsv.gz'
3030
```
3131
Load scripts in this repo
3232

aurora-mysql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ mysql -h "${FQDN}" -u admin --password="${PASSWORD}" -e "CREATE DATABASE test"
3737
Load the data
3838

3939
```
40-
wget --continue 'https://datasets.clickhouse.com/hits_compatible/hits.tsv.gz'
40+
wget --continue --progress=dot:giga 'https://datasets.clickhouse.com/hits_compatible/hits.tsv.gz'
4141
gzip -d -f hits.tsv.gz
4242
4343
mysql -h "${FQDN}" -u admin --password="${PASSWORD}" test < create.sql

aurora-postgresql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ chmod 400 .pgpass
3636
Load the data
3737

3838
```
39-
wget --continue 'https://datasets.clickhouse.com/hits_compatible/hits.tsv.gz'
39+
wget --continue --progress=dot:giga 'https://datasets.clickhouse.com/hits_compatible/hits.tsv.gz'
4040
gzip -d -f hits.tsv.gz
4141
4242
psql -U postgres -h "${FQDN}" -t -c 'CREATE DATABASE test'

bigquery/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ source .bashrc
1818

1919
Load the data:
2020
```
21-
wget --continue 'https://datasets.clickhouse.com/hits_compatible/hits.csv.gz'
21+
wget --continue --progress=dot:giga 'https://datasets.clickhouse.com/hits_compatible/hits.csv.gz'
2222
gzip -d -f hits.csv.gz
2323
2424
time bq load --source_format CSV --allow_quoted_newlines=1 test.hits hits.csv

byconity/benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function byconity()
1212
export -f byconity
1313

1414
byconity --time -n < create.sql
15-
wget --continue 'https://datasets.clickhouse.com/hits_compatible/hits.tsv.gz'
15+
wget --continue --progress=dot:giga 'https://datasets.clickhouse.com/hits_compatible/hits.tsv.gz'
1616
pigz -fkd hits.tsv.gz
1717
byconity --database bench --query "INSERT INTO hits FORMAT TSV" < hits.tsv
1818

bytehouse/NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Trash.
199199
Will try CSV.
200200

201201
```
202-
wget --continue 'https://datasets.clickhouse.com/hits_compatible/hits.csv.gz'
202+
wget --continue --progress=dot:giga 'https://datasets.clickhouse.com/hits_compatible/hits.csv.gz'
203203
gzip -d -f hits.csv.gz
204204
```
205205

bytehouse/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export warehouse='test'
2828
```
2929

3030
```
31-
wget --continue 'https://datasets.clickhouse.com/hits_compatible/hits.csv.gz'
31+
wget --continue --progress=dot:giga 'https://datasets.clickhouse.com/hits_compatible/hits.csv.gz'
3232
gzip -d -f hits.csv.gz
3333
```
3434

cedardb/benchmark.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sudo apt-get install -y docker.io postgresql-client gzip
66

77
# download dataset
88
echo "Downloading dataset..."
9-
wget --continue 'https://datasets.clickhouse.com/hits_compatible/hits.tsv.gz'
9+
wget --continue --progress=dot:giga 'https://datasets.clickhouse.com/hits_compatible/hits.tsv.gz'
1010
echo "Unpacking dataset..."
1111
gzip -d hits.tsv.gz
1212
mkdir data
@@ -16,7 +16,7 @@ rm -rf db
1616
mkdir db
1717

1818
# get and configure CedarDB image
19-
echo "Starting CedarDB..."
19+
echo "Starting CedarDB..."
2020
docker run --rm -p 5432:5432 -v ./data:/data -v ./db:/var/lib/cedardb/data -e CEDAR_PASSWORD=test --name cedardb cedardb/cedardb:latest > /dev/null 2>&1 &
2121

2222
# wait for container to start

chdb-dataframe/benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pip install --break-system-packages pandas
88
pip install --break-system-packages chdb==2.2.0b1
99

1010
# Download the data
11-
wget --continue https://datasets.clickhouse.com/hits_compatible/athena/hits.parquet
11+
wget --continue --progress=dot:giga https://datasets.clickhouse.com/hits_compatible/athena/hits.parquet
1212

1313
# Run the queries
1414

chdb-parquet/benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pip install --break-system-packages psutil
88
pip install --break-system-packages chdb==2.2.0b1
99

1010
# Load the data
11-
seq 0 99 | xargs -P100 -I{} bash -c 'wget --continue https://datasets.clickhouse.com/hits_compatible/athena_partitioned/hits_{}.parquet'
11+
seq 0 99 | xargs -P100 -I{} bash -c 'wget --continue --progress=dot:giga https://datasets.clickhouse.com/hits_compatible/athena_partitioned/hits_{}.parquet'
1212

1313
# Run the queries
1414

0 commit comments

Comments
 (0)