Skip to main content

Build and run queries against data

Project description

DataFusion in Python

Python test Python Release Build

This is a Python library that binds to Apache Arrow in-memory query engine DataFusion.

DataFusion's Python bindings can be used as a foundation for building new data systems in Python. Here are some examples:

  • Dask SQL uses DataFusion's Python bindings for SQL parsing, query planning, and logical plan optimizations, and then transpiles the logical plan to Dask operations for execution.
  • DataFusion Ballista is a distributed SQL query engine that extends DataFusion's Python bindings for distributed use cases.
  • DataFusion Ray is another distributed query engine that uses DataFusion's Python bindings.

Features

  • Execute queries using SQL or DataFrames against CSV, Parquet, and JSON data sources.
  • Queries are optimized using DataFusion's query optimizer.
  • Execute user-defined Python code from SQL.
  • Exchange data with Pandas and other DataFrame libraries that support PyArrow.
  • Serialize and deserialize query plans in Substrait format.
  • Experimental support for transpiling SQL queries to DataFrame calls with Polars, Pandas, and cuDF.

For tips on tuning parallelism, see Maximizing CPU Usage in the configuration guide.

Example Usage

The following example demonstrates running a SQL query against a Parquet file using DataFusion, storing the results in a Pandas DataFrame, and then plotting a chart.

The Parquet file used in this example can be downloaded from the following page:

from datafusion import SessionContext

# Create a DataFusion context
ctx = SessionContext()

# Register table with context
ctx.register_parquet('taxi', 'yellow_tripdata_2021-01.parquet')

# Execute SQL
df = ctx.sql("select passenger_count, count(*) "
             "from taxi "
             "where passenger_count is not null "
             "group by passenger_count "
             "order by passenger_count")

# convert to Pandas
pandas_df = df.to_pandas()

# create a chart
fig = pandas_df.plot(kind="bar", title="Trip Count by Number of Passengers").get_figure()
fig.savefig('chart.png')

This produces the following chart:

Chart

Registering a DataFrame as a View

You can use SessionContext's register_view method to convert a DataFrame into a view and register it with the context.

from datafusion import SessionContext, col, literal

# Create a DataFusion context
ctx = SessionContext()

# Create sample data
data = {"a": [1, 2, 3, 4, 5], "b": [10, 20, 30, 40, 50]}

# Create a DataFrame from the dictionary
df = ctx.from_pydict(data, "my_table")

# Filter the DataFrame (for example, keep rows where a > 2)
df_filtered = df.filter(col("a") > literal(2))

# Register the dataframe as a view with the context
ctx.register_view("view1", df_filtered)

# Now run a SQL query against the registered view
df_view = ctx.sql("SELECT * FROM view1")

# Collect the results
results = df_view.collect()

# Convert results to a list of dictionaries for display
result_dicts = [batch.to_pydict() for batch in results]

print(result_dicts)

This will output:

[{'a': [3, 4, 5], 'b': [30, 40, 50]}]

Configuration

It is possible to configure runtime (memory and disk settings) and configuration settings when creating a context.

runtime = (
    RuntimeEnvBuilder()
    .with_disk_manager_os()
    .with_fair_spill_pool(10000000)
)
config = (
    SessionConfig()
    .with_create_default_catalog_and_schema(True)
    .with_default_catalog_and_schema("foo", "bar")
    .with_target_partitions(8)
    .with_information_schema(True)
    .with_repartition_joins(False)
    .with_repartition_aggregations(False)
    .with_repartition_windows(False)
    .with_parquet_pruning(False)
    .set("datafusion.execution.parquet.pushdown_filters", "true")
)
ctx = SessionContext(config, runtime)

Refer to the API documentation for more information.

Printing the context will show the current configuration settings.

print(ctx)

Extensions

For information about how to extend DataFusion Python, please see the extensions page of the online documentation.

More Examples

See examples for more information.

Executing Queries with DataFusion

Running User-Defined Python Code

Substrait Support

How to install

uv

uv add datafusion

Pip

pip install datafusion
# or
python -m pip install datafusion

Conda

conda install -c conda-forge datafusion

You can verify the installation by running:

>>> import datafusion
>>> datafusion.__version__
'0.6.0'

Using DataFusion with AI coding assistants

This project ships a SKILL.md that teaches AI coding assistants how to write idiomatic DataFusion Python. It follows the Agent Skills open standard.

Preferred: npx skills add apache/datafusion-python — installs the skill in Claude Code, Cursor, Windsurf, Cline, Codex, Copilot, Gemini CLI, and other supported agents.

Manual: paste this line into your project's AGENTS.md / CLAUDE.md:

For DataFusion Python code, see https://github.com/apache/datafusion-python/blob/main/skills/datafusion_python/SKILL.md

How to develop

This assumes that you have rust and cargo installed. We use the workflow recommended by pyo3 and maturin. The Maturin tools used in this workflow can be installed either via uv or pip. Both approaches should offer the same experience. It is recommended to use uv since it has significant performance improvements over pip.

Currently for protobuf support either protobuf or cmake must be installed.

Bootstrap (uv):

By default uv will attempt to build the datafusion python package. For our development we prefer to build manually. This means that when creating your virtual environment using uv sync you need to pass in the additional --no-install-package datafusion and for uv run commands the additional parameter --no-project

# fetch this repo
git clone git@github.com:apache/datafusion-python.git
# cd to the repo root
cd datafusion-python/
# create the virtual environment
uv sync --dev --no-install-package datafusion
# activate the environment
source .venv/bin/activate

Bootstrap (pip):

# fetch this repo
git clone git@github.com:apache/datafusion-python.git
# cd to the repo root
cd datafusion-python/
# prepare development environment (used to build wheel / install in development)
python3 -m venv .venv
# activate the venv
source .venv/bin/activate
# update pip itself if necessary
python -m pip install -U pip
# install dependencies
python -m pip install -r pyproject.toml

The tests rely on test data in git submodules.

git submodule update --init

Whenever rust code changes (your changes or via git pull):

# make sure you activate the venv using "source venv/bin/activate" first
maturin develop --uv
python -m pytest

Alternatively if you are using uv you can do the following without needing to activate the virtual environment:

uv run --no-project maturin develop --uv
uv run --no-project pytest

To run the FFI tests within the examples folder, after you have built datafusion-python with the previous commands:

cd examples/datafusion-ffi-example
uv run --no-project maturin develop --uv
uv run --no-project pytest python/tests/_test_*py

Running & Installing pre-commit hooks

datafusion-python takes advantage of pre-commit to assist developers with code linting to help reduce the number of commits that ultimately fail in CI due to linter errors. Using the pre-commit hooks is optional for the developer but certainly helpful for keeping PRs clean and concise.

Our pre-commit hooks can be installed by running pre-commit install, which will install the configurations in your DATAFUSION_PYTHON_ROOT/.github directory and run each time you perform a commit, failing to complete the commit if an offending lint is found allowing you to make changes locally before pushing.

The pre-commit hooks can also be run adhoc without installing them by simply running pre-commit run --all-files.

NOTE: the current pre-commit hooks require docker, and cmake. See note on protobuf above.

Running linters without using pre-commit

There are scripts in ci/scripts for running Rust and Python linters.

./ci/scripts/python_lint.sh
./ci/scripts/rust_clippy.sh
./ci/scripts/rust_fmt.sh
./ci/scripts/rust_toml_fmt.sh

Checking Upstream DataFusion Coverage

This project includes an AI agent skill for auditing which features from the upstream Apache DataFusion Rust library are not yet exposed in these Python bindings. This is useful when adding missing functions, auditing API coverage, or ensuring parity with upstream.

The skill accepts an optional area argument:

scalar functions
aggregate functions
window functions
dataframe
session context
ffi types
all

If no argument is provided, it defaults to checking all areas. The skill will fetch the upstream DataFusion documentation, compare it against the functions and methods exposed in this project, and produce a coverage report listing what is currently exposed and what is missing.

The skill definition lives in .ai/skills/check-upstream/SKILL.md and follows the Agent Skills open standard. It can be used by any AI coding agent that supports skill discovery, or followed manually.

How to update dependencies

To change test dependencies, change the pyproject.toml and run

uv sync --dev --no-install-package datafusion

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

datafusion-54.0.0.tar.gz (276.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

datafusion-54.0.0-cp314-cp314t-win_amd64.whl (43.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

datafusion-54.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl (41.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

datafusion-54.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl (38.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

datafusion-54.0.0-cp314-cp314t-macosx_11_0_arm64.whl (37.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

datafusion-54.0.0-cp314-cp314t-macosx_10_12_x86_64.whl (39.8 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

datafusion-54.0.0-cp310-abi3-win_amd64.whl (43.4 MB view details)

Uploaded CPython 3.10+Windows x86-64

datafusion-54.0.0-cp310-abi3-manylinux_2_28_x86_64.whl (41.1 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.28+ x86-64

datafusion-54.0.0-cp310-abi3-manylinux_2_28_aarch64.whl (38.9 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.28+ ARM64

datafusion-54.0.0-cp310-abi3-macosx_11_0_arm64.whl (37.1 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

datafusion-54.0.0-cp310-abi3-macosx_10_12_x86_64.whl (39.8 MB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

Details for the file datafusion-54.0.0.tar.gz.

File metadata

  • Download URL: datafusion-54.0.0.tar.gz
  • Upload date:
  • Size: 276.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for datafusion-54.0.0.tar.gz
Algorithm Hash digest
SHA256 cfe7e8dfc026efc05824f49b53ad6a72caf5c2d6820759b6212a09e245a427ed
MD5 304604925afb437b021ac8b70027c1ac
BLAKE2b-256 6090886f7e9cf827f07ebd60bd293e54e0a028a50dd49bbaef0ee42aae1981ea

See more details on using hashes here.

File details

Details for the file datafusion-54.0.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for datafusion-54.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 64973c63874ec31670dd97b32b18af7b07fad679cb20d58ed154038e3a5c204e
MD5 4d1f8f054fbf412947f9a18f6ca243d3
BLAKE2b-256 355c553fd1107dede0a56727fda7216a7198d41394f2d19697f4fb104cc695ea

See more details on using hashes here.

File details

Details for the file datafusion-54.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for datafusion-54.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 796fd5683927443c5bc61999d00b9007ef9b5ce107725ea8d241df718860985d
MD5 327f5dd834aa3c30ea2b49f05ee41a12
BLAKE2b-256 5ab92383d30d317bb913cab97dbf2e6e1d5f37f594860d5c5bc176e025cf7d4a

See more details on using hashes here.

File details

Details for the file datafusion-54.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for datafusion-54.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 574f642832a106456cfc4f32aa82484c504fc32f4be2b510202bcb579de8e6d1
MD5 c123894d36f46f4a34816cd8ed47834b
BLAKE2b-256 40c4ebd5ef5349ecbea7f5f9da76c213581c13e7bbe1b5735c9925b279eeb4eb

See more details on using hashes here.

File details

Details for the file datafusion-54.0.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for datafusion-54.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe57038003b18e28b90752c1e32b44af74ec4f552a1904aee725e1129a00c447
MD5 28b2527e423d738d8c3f520891c03531
BLAKE2b-256 1881392ee323104ab14ca689384723b69e137064a828233c165574f97a74c0e9

See more details on using hashes here.

File details

Details for the file datafusion-54.0.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for datafusion-54.0.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4e79048da82ad89b768bd0be7df39254cd2a0afe2b719d1f129e8a7229af683
MD5 a8200edbf7d58015bb9b73de7192a4e6
BLAKE2b-256 9d415608323226f21a0fa180823c531dbc0ed270e9b694f299b7647505cb6a06

See more details on using hashes here.

File details

Details for the file datafusion-54.0.0-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: datafusion-54.0.0-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 43.4 MB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for datafusion-54.0.0-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 b934e097e1bdca7d5768a81ac1bc4a1812cb459269f8b1a5d892a5d930f18376
MD5 2fceb65084d35b82edbef86baebcc859
BLAKE2b-256 61d48ba6e3fe3291c9ccc94b5ca3ec3c1fbcbfbe5ece5ffb965e4550844e2c56

See more details on using hashes here.

File details

Details for the file datafusion-54.0.0-cp310-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for datafusion-54.0.0-cp310-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3bcd4d213fa74710e75e6e182cc468c2bdbc5ffc74a08c8155d414fbbfa1b3f6
MD5 e67d572a196666c7111b15d410ab0c3e
BLAKE2b-256 a881e69008e3479f4d0134875bc4ae39503bedcd55ca2597e71392c963c651b4

See more details on using hashes here.

File details

Details for the file datafusion-54.0.0-cp310-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for datafusion-54.0.0-cp310-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9432bf162381e9282cbc74915b8b773895de18be836f7e3f6d0de4d981f24630
MD5 9989c09d741faeb0ca3111bf63701437
BLAKE2b-256 c65edbb9e6e3e5006d34f295d7ac73f1302c8f2df140666402a06e6c55028edb

See more details on using hashes here.

File details

Details for the file datafusion-54.0.0-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for datafusion-54.0.0-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a3bf43185c7e43e25242e5fb17b6a11b86bf976434c0bc493fdedbd9a080969
MD5 46bba47a81f35d16166b17eadd5f017c
BLAKE2b-256 66e55e4dbd42ce9a2affb3be90d9ab17cebde1a6f28b0d9fb4b83d612d5c8e42

See more details on using hashes here.

File details

Details for the file datafusion-54.0.0-cp310-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for datafusion-54.0.0-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 946f55e48b8d523d7b4ac106bdf588b4493c2c66f81877d6952aafeaf7c3ec73
MD5 6e16194f77a3ce1cc830d9ab4084de37
BLAKE2b-256 46584c5b981e3d9ade32a906c15a4941eef50c9b862781cdc14bf4dff48d026a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page