Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
d87a050
Core: Add pluggable execution backend with DataFusion for OOM-resilie…
qzyu999 Jul 17, 2026
1530069
Fix pre-commit check failures: pydocstyle, codespell, markdownlint, u…
qzyu999 Jul 26, 2026
dbe2a28
Fix lint and type errors for pluggable backend execution module
qzyu999 Jul 27, 2026
c14961c
fix: add type annotations and fix linting issues in execution module
qzyu999 Jul 27, 2026
2389585
fix: improve type annotations in execution module and tests
qzyu999 Jul 27, 2026
a001e8b
Fix ruff and mypy errors in execution module tests - partial (96 rema…
qzyu999 Jul 27, 2026
b46ba03
Continue fixing mypy errors in execution module tests (88 remaining)
qzyu999 Jul 27, 2026
f7f8646
Fix mypy type errors in pluggable backend tests
qzyu999 Jul 27, 2026
9ac1673
Restore transforms.py and avro/file.py to main state
qzyu999 Jul 27, 2026
9fc763e
Fix import sorting and formatting (ruff)
qzyu999 Jul 27, 2026
b094122
Fix schema reconciliation to always apply when file_schema is valid
qzyu999 Jul 27, 2026
ea4cd97
Fix unbound predicate and file:// URI handling in orchestrate_scan
qzyu999 Jul 27, 2026
c8e5b98
Fix schema reconciliation and predicate binding edge cases
qzyu999 Jul 27, 2026
e8537a0
Fix type promotion and ArrowScan deprecation warning in tests
qzyu999 Jul 27, 2026
77019d5
Fix delete to use orchestrate_scan for schema reconciliation
qzyu999 Jul 27, 2026
661b423
Fix test isolation and name mapping for schema evolution
qzyu999 Jul 27, 2026
9cc3e46
Fix orchestrate_scan to use row_filter instead of task.residual for r…
qzyu999 Jul 27, 2026
016f07b
Fix filter logic and add column rename reconciliation
qzyu999 Jul 27, 2026
6234c3e
Fix partition value projection and post-filter ordering
qzyu999 Jul 27, 2026
7ccb81b
Fix e2e test: use int32 to match IntegerType schema
qzyu999 Jul 27, 2026
14e4f35
Fix Spark e2e test: don't require positional delete files
qzyu999 Jul 27, 2026
d5830a4
Fix to_arrow_batch_reader to respect limit parameter
qzyu999 Jul 27, 2026
9f8741b
Skip Puffin delete files (v3 delete vectors) in positional delete han…
qzyu999 Jul 27, 2026
cb5c2c1
Apply ruff formatting
qzyu999 Jul 27, 2026
b221ef9
Use logger instead of warnings.warn for Puffin DV skip message
qzyu999 Jul 27, 2026
c823bf8
Support Puffin delete vectors (DVs) in Iceberg v3 scans
qzyu999 Jul 27, 2026
f461d36
Merge origin/main into pluggable-backend-init
qzyu999 Jul 27, 2026
444a67b
Fix post-filter to use task.residual and preserve dictionary encoding
qzyu999 Jul 27, 2026
ae1cc66
Fix post-filter: use row_filter, handle already-bound predicates
qzyu999 Jul 27, 2026
2b82fb9
Skip post-filter when pushdown handled the filter (fixes UUID issue)
qzyu999 Jul 27, 2026
ea07a19
Fix post-filter: track actual pushdown instead of inferring from resi…
qzyu999 Jul 27, 2026
de2d2f0
Add regression tests for positional deletes + row_filter (ea07a19b)
qzyu999 Jul 28, 2026
ffd7eba
Fix filter pushdown when task.residual is AlwaysTrue (REST catalog)
qzyu999 Jul 28, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
461 changes: 461 additions & 0 deletions mkdocs/docs/configuration.md

Large diffs are not rendered by default.

54 changes: 54 additions & 0 deletions pyiceberg/execution/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

"""Pluggable execution backend for PyIceberg.

Provides independently configurable read, write, and compute backends.
The architecture separates Iceberg semantics (scan planning, commits) from
data execution (read, write, sort, join, filter), allowing different engines
to handle each axis while PyIceberg retains ownership of spec logic.
"""

from __future__ import annotations

from pyiceberg.execution.engine import (
ExecutionEngine,
build_backends,
clear_config_cache,
resolve_backends,
)
from pyiceberg.execution.protocol import (
Backends,
ComputeBackend,
ReadBackend,
SortKey,
SortKeyList,
WriteBackend,
)

__all__ = [
"Backends",
"ComputeBackend",
"ExecutionEngine",
"ReadBackend",
"SortKey",
"SortKeyList",
"WriteBackend",
"build_backends",
"clear_config_cache",
"resolve_backends",
]
Loading
Loading