Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 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
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