Add missing Dataframe functions (#1472)

* Add missing DataFrame methods for set operations and query

Expose upstream DataFusion DataFrame methods that were not yet
available in the Python API. Closes #1455.

Set operations:
- except_distinct: set difference with deduplication
- intersect_distinct: set intersection with deduplication
- union_by_name: union matching columns by name instead of position
- union_by_name_distinct: union by name with deduplication

Query:
- distinct_on: deduplicate rows based on specific columns
- sort_by: sort by expressions with ascending order and nulls last

Note: show_limit is already covered by the existing show(num) method.
explain_with_options and with_param_values are deferred as they require
exposing additional types (ExplainOption, ParamValues).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Add ExplainFormat enum and format option to DataFrame.explain()

Extend the existing explain() method with an optional format parameter
instead of adding a separate explain_with_options() method. This keeps
the API simple while exposing all upstream ExplainOption functionality.

Available formats: indent (default), tree, pgjson, graphviz.

The ExplainFormat enum is exported from the top-level datafusion module.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Add DataFrame.window() and unnest recursion options

Expose remaining DataFrame methods from upstream DataFusion.
Closes #1456.

- window(*exprs): apply window function expressions and append results
  as new columns
- unnest_column/unnest_columns: add optional recursions parameter for
  controlling unnest depth via (input_column, output_column, depth)
  tuples

Note: drop_columns is already exposed as the existing drop() method.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Update docstring

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Improve docstrings and test robustness for new DataFrame methods

Clarify except_distinct/intersect_distinct docstrings, add deterministic
sort to test_window, add sort_by ascending verification test, and add
smoke tests for PGJSON and GRAPHVIZ explain formats.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Consolidate new DataFrame tests into parametrized tests

Combine set operation tests (except_distinct, intersect_distinct,
union_by_name, union_by_name_distinct) into a single parametrized
test_set_operations_distinct. Merge sort_by tests and convert
explain format tests to parametrized form.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Add doctest examples to new DataFrame method docstrings

Add >>> style usage examples for window, explain, except_distinct,
intersect_distinct, union_by_name, union_by_name_distinct, distinct_on,
sort_by, and unnest_columns to match existing docstring conventions.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Improve error messages, tests, and API hygiene from PR review

- Provide actionable error message for invalid explain format strings
- Remove recursions param from deprecated unnest_column (use unnest_columns)
- Add null-handling test case for sort_by to verify nulls-last behavior
- Add format-specific assertions to explain tests (TREE, PGJSON, GRAPHVIZ)
- Add deep recursion test for unnest_columns with depth > 1
- Add multi-expression window test to verify variadic *exprs

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Consolidate window and unnest tests into parametrized tests

Combine test_window and test_window_multiple_expressions into a single
parametrized test. Merge unnest recursion tests into one parametrized
test covering basic, explicit depth 1, and deep recursion cases.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Address PR review feedback for DataFrame operations

- Use upstream parse error for explain format instead of hardcoded options
- Fix sort_by to use column name resolution consistent with sort()
- Use ExplainFormat enum members directly in tests instead of string lookup
- Merge union_by_name_distinct into union_by_name(distinct=False) for a
  more Pythonic API
- Update check-upstream skill to note union_by_name_distinct coverage

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Add DataFrame.column(), col(), and find_qualified_columns() methods

Expose upstream find_qualified_columns to resolve unqualified column
names into fully qualified column expressions. This is especially
useful for disambiguating columns after joins.

- find_qualified_columns(*names) on Rust side calls upstream directly
- DataFrame.column(name) and col(name) alias on Python side
- Update join and join_on docstrings to reference DataFrame.col()
- Add "Disambiguating Columns with DataFrame.col()" section to joins docs
- Add tests for qualified column resolution, ambiguity, and join usage

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Merge union_by_name and union_by_name_distinct into a single method with distinct flag

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* converting into a python dict loses a column when the names are identical

* Consolidate except_all/except_distinct and intersect/intersect_distinct into single methods with distinct flag

Follows the same pattern as union(distinct=) and union_by_name(distinct=).
Also deprecates union_distinct() in favor of union(distinct=True).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
6 files changed
tree: b88ea32d565a6b1708831f95a42034c7028a50e4
  1. .ai/
  2. .claude/
  3. .github/
  4. benchmarks/
  5. ci/
  6. crates/
  7. dev/
  8. docs/
  9. examples/
  10. python/
  11. .asf.yaml
  12. .dockerignore
  13. .gitignore
  14. .gitmodules
  15. .pre-commit-config.yaml
  16. AGENTS.md
  17. Cargo.lock
  18. Cargo.toml
  19. CHANGELOG.md
  20. conftest.py
  21. LICENSE.txt
  22. pyproject.toml
  23. README.md
  24. rustfmt.toml
  25. uv.lock
README.md

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'

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