feat: support batch incremental delta scans#508
Merged
Conversation
This was referenced Jul 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Linked issue: close #503
I'd like a small public API for batch incremental reads — basically "files between snapshot A (exclusive) and B (inclusive)" — without callers reinventing snapshot walking on top of
TableScan.This PR is intentionally thin: Delta + Auto selection only. Changelog / Diff come in follow-up PRs so review stays focused.
Brief change log
IncrementalScanMode,IncrementalScan,IncrementalPlan,IncrementalSplitchangelog-producer=none→ Delta; otherwise resolves to Changelog (planning Changelog still fails loud until the next PR)ReadBuilderwhen planningTableRead::to_incremental_arrowfor the data-split caseNo new manifest reader code — it reuses what
TableScanalready does.Tests
API and Format
paimon::table(also re-exported at crate root)Documentation
None yet — waiting until the SQL TVF lands so we document the whole story once. Can add a short rustdoc note if preferred.
Follow-ups
paimon_incremental_query