Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1016 Bytes

README.md

File metadata and controls

38 lines (26 loc) · 1016 Bytes

DataFusion / DuckDB Benchmarking Scripts

Compare DataFusion and DuckDB with

Versions

  • DataFusion 32.0.0
  • DuckDB 0.9.1

Results

All results are checked in to results

The scripts in this repository run queries via python bindings for both DataFusion and DuckDB

Setting up the Environment

# 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: