Enable page-level payload I/O in hybrid scan - #23362
Draft
mhaseeb123 wants to merge 21 commits into
Draft
Conversation
|
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
3 tasks
Preserve page locations and variable-width offset state needed to safely reconstruct columns from a sparse subset of Parquet data pages.
Refine page topology preprocessing and add pruned-page decoding with hybrid scan coverage.
mhaseeb123
force-pushed
the
fix/parquet-sparse-page-io
branch
from
July 22, 2026 03:49
05bb11d to
50681a9
Compare
Initialize sparse page state and carry variable-width offsets across pruned pages so page-level reads produce valid columns without overestimating string storage.
mhaseeb123
force-pushed
the
fix/parquet-sparse-page-io
branch
from
July 22, 2026 03:56
50681a9 to
df762d8
Compare
Exercise source-grouped sparse payload reads and make dataset selection configurable for validated A/B benchmarks.
3 tasks
rapids-bot Bot
pushed a commit
that referenced
this pull request
Jul 24, 2026
Part of #23362 This PR includes bug fixes and supporting features needed to enable page pruning with page-level (sparse) I/O (for payload columns) in hybrid scan, that is upcoming in #23375 and includes end to end tests. Authors: - Muhammad Haseeb (https://github.com/mhaseeb123) Approvers: - Paul Mattione (https://github.com/pmattione-nvidia) - Vukasin Milovanovic (https://github.com/vuule) - Bradley Dice (https://github.com/bdice) - Nghia Truong (https://github.com/ttnghia) URL: #23374
rapids-bot Bot
pushed a commit
that referenced
this pull request
Aug 20, 2026
Contributes to #23519 This PR adds new hybrid scan APIs to support page-level (sparse) I/O for payload columns. This includes: - API to compute (pruned) page-level I/O byte range for payload columns - API to only materialize these sparse pages into the output table - End-to-end test coverage and some negative tests. More extensive tests will land in #23362 Authors: - Muhammad Haseeb (https://github.com/mhaseeb123) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) - Qi Chen (https://github.com/qbacpey) URL: #23375
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.
Description
Closes #23519
This PR adds a feature complete prototype implementation of page-level IO support for payload columns in the Hybrid Scan reader along with an example showcasing its application.
Checklist