Skip to content

Commit 2948ce5

Browse files
Fix DuckDB
1 parent a985697 commit 2948ce5

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

duckdb-datalake-partitioned/benchmark.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#!/bin/bash
22

33
# Install
4+
export HOME=${HOME:=~}
45
curl https://install.duckdb.org | sh
5-
export PATH='/.duckdb/cli/latest':$PATH
6+
export PATH=$HOME'/.duckdb/cli/latest':$PATH
67

78
echo -n "Load time: "
89
command time -f '%e' duckdb hits.db -f create.sql

duckdb-datalake/benchmark.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#!/bin/bash
22

33
# Install
4+
export HOME=${HOME:=~}
45
curl https://install.duckdb.org | sh
5-
export PATH='/.duckdb/cli/latest':$PATH
6+
export PATH=$HOME'/.duckdb/cli/latest':$PATH
67

78
echo -n "Load time: "
89
command time -f '%e' duckdb hits.db -f create.sql

duckdb-parquet-partitioned/benchmark.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#!/bin/bash
22

33
# Install
4+
export HOME=${HOME:=~}
45
curl https://install.duckdb.org | sh
5-
export PATH='/.duckdb/cli/latest':$PATH
6+
export PATH=$HOME'/.duckdb/cli/latest':$PATH
67

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

duckdb-parquet/benchmark.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#!/bin/bash
22

33
# Install
4+
export HOME=${HOME:=~}
45
curl https://install.duckdb.org | sh
5-
export PATH='/.duckdb/cli/latest':$PATH
6+
export PATH=$HOME'/.duckdb/cli/latest':$PATH
67

78
# Load the data
89
wget --continue --progress=dot:giga 'https://datasets.clickhouse.com/hits_compatible/hits.parquet'

duckdb/benchmark.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#!/bin/bash
22

33
# Install
4+
export HOME=${HOME:=~}
45
curl https://install.duckdb.org | sh
5-
export PATH='/.duckdb/cli/latest':$PATH
6+
export PATH=$HOME'/.duckdb/cli/latest':$PATH
67

78
# Load the data
89
sudo apt-get install -y pigz

0 commit comments

Comments
 (0)