[python] Add opt-in late materialization using Parquet OffsetIndex - #9962
Draft
XiaoHongbo-Hope wants to merge 3 commits into
Draft
XiaoHongbo-Hope wants to merge 3 commits into
XiaoHongbo-Hope wants to merge 3 commits into
Conversation
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.
What
value,metadata). A single row is a valid one-row range. Disjoint ranges, full-row-group reads, missing indexes, unsupported schemas, and selections that would read too many bytes use the ordinary reader.parquet.filter.columnindex.enabled, disabled by default. This does not add ColumnIndex predicate filtering or change the table format.I/O trade-off
The optimization trades more small range requests for fewer transferred bytes. Read-only single-row tests returned identical results and showed lower file-read and point-lookup latency, but issued more GET requests. The extra requests read page indexes and may outweigh byte savings on high-latency storage or less selective reads. This is why the path remains opt-in and falls back when it is unlikely to help. These measurements are not a full application or training-sample benchmark.
Validation
git diff --checkpassed.This is a draft because the remote I/O behavior and fallback thresholds deserve community review before enabling it by default.