Compare DataFusion and DuckDB with
- ClickBench - scripts in clickbench
- TPC-H - scripts in tpch
- H2O.ai - scripts in h2o
- DataFusion 32.0.0
- DuckDB 0.9.1
All results are checked in to results
The scripts in this repository run queries via python bindings for both DataFusion and DuckDB
# Setup Python virtual environment and databases
python3 -m venv venv
source venv/bin/activate
pip install pyarrow pandas matplotlib seaborn prettytable
# install DuckDB
pip install duckdb==0.9.1 psutil
# install DataFusion
pip install datafusion==32.0.0
Credits: