-
Notifications
You must be signed in to change notification settings - Fork 1k
Speed up Parquet filter pushdown v4 (Predicate evaluation cache for async_reader) #7850
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
Merged
+1,869
−29
Merged
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
1f93a93
update
XiangpengHao 2e01e56
update
XiangpengHao 0bd08c3
update
XiangpengHao d6ecbd4
update
XiangpengHao 7cd5518
cleanup
XiangpengHao 4520048
update
XiangpengHao e6281bc
update
XiangpengHao 6b6d4fc
update
XiangpengHao b696b66
update
XiangpengHao f60581f
update
XiangpengHao 1851f0b
clippy and license
XiangpengHao 5e414a8
Merge remote-tracking branch 'apache/main' into pushdown-v4
alamb 58add51
bug fix
XiangpengHao 470cc01
Merge remote-tracking branch 'refs/remotes/origin/pushdown-v3' into p…
XiangpengHao 2bf3d38
clippy
XiangpengHao 2cf1a8f
bug fix
XiangpengHao 86e149c
switch to boolean array for row selection
XiangpengHao 4d24172
Merge remote-tracking branch 'apache/main' into pushdown-v4
alamb be134d6
Add comments (OCD) and rename some fields
alamb eecaf99
Merge pull request #4 from alamb/alamb/pushdown_suggestions
XiangpengHao 5537bcb
fmt
XiangpengHao b835163
fmt
alamb 5132de8
Simplify projection caching
alamb 253dad3
Move cache options construction to ArrayReaderBuilder, add builders
alamb 5d9781e
update memory accounting
XiangpengHao 2e20902
Merge remote-tracking branch 'refs/remotes/origin/pushdown-v4' into p…
XiangpengHao 721d00c
Merge pull request #5 from alamb/alamb/simplify_cache
XiangpengHao f8aed80
Merge pull request #6 from alamb/alamb/cleaner_api
XiangpengHao 884b591
update
XiangpengHao 4f6b918
array size
XiangpengHao 6c53bfd
add test case
XiangpengHao 8ebe579
fix bug
XiangpengHao c240a52
clippy & fmt
XiangpengHao 30a0d1c
Add config option for predicate cache memory limit
alamb ed3ce13
Add option to control predicate cache, documentation, ArrowReaderMetr…
alamb 42d5520
Update parquet/src/arrow/arrow_reader/mod.rs
alamb 6e618b3
Merge pull request #7 from alamb/alamb/test_memory_limit
XiangpengHao f70e46a
Clarify in documentation that cache is only for async decoder
alamb 15d6826
add comment
alamb bec6d9c
Revert backwards incompatible changes to the Parquet reader API
alamb 3e05cb2
Merge pull request #9 from alamb/alamb/revert_api_changes
XiangpengHao 4d64dc0
Merge pull request #8 from alamb/alamb/pushdown-v4-cleanup
XiangpengHao 8da582b
Merge remote-tracking branch 'apache/main' into pushdown-v4
alamb 315e463
exclude nested column from cache
XiangpengHao 1db701a
only use expanded selection when the column is one of cache column
XiangpengHao bea4433
Merge remote-tracking branch 'upstream/main' into pushdown-v4
XiangpengHao 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
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.
Practically there's no contention because there's not parallelism in decoding one row group. we add mutex here because we need to use Arc.