-
Notifications
You must be signed in to change notification settings - Fork 3.9k
[fix](scan) Backport FileScannerV2 predicate ownership fixes #66356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Gabriel39
wants to merge
10
commits into
apache:branch-4.1
from
Gabriel39:fix/file-scanner-v2-predicate-localization-4.1
Closed
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
717c6c3
[enhancement](scan) optimize parquet v2 predicate filtering
Gabriel39 c6585fa
[fix](scan) initialize refreshed JNI predicates
Gabriel39 3eb01f3
[fix](scan) preserve late predicate reader state
Gabriel39 a5fb2e8
[cleanup](scan) remove query dictionary filter cache
Gabriel39 909ff1b
Revert "[fix](file) Revert split residual predicate ownership (#65998)"
Gabriel39 ca93eff
[fix](be) Restore FileScannerV2 residual predicate ownership
Gabriel39 4b21563
[opt](file) Localize safe scanner v2 predicates independently
Gabriel39 f24f78a
[improvement](scan) Avoid materializing post-filter predicate columns
Gabriel39 1e6d0f3
[fix](build) Remove unused FileQueryScanNodeTest import
Gabriel39 e3d2b37
[fix](scan) Keep predicate localization split-local
Gabriel39 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[P2] Account for JNI batches before falling back to survivor rows.
JniTableReader::get_block()applies the now-owned (including late) conjuncts and loops again whenever a Java batch is fully rejected, but it never recordsMaterializedBlockStats. Since Scanner filtering is now a no-op, a late selective RF can drain the rest of a large JNI split in one scheduler turn, while these hooks see only zero/survivor rows and cannot enforce the row/byte budget or learn the pre-filter width. Please record the pre-filter JNI rows/bytes and yield after one rejected materialized batch, as the base TableReader path now does.