-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Support reverse parquet scan and fast parquet order inversion at row group level #18817
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
Open
zhuqi-lucas
wants to merge
44
commits into
apache:main
Choose a base branch
from
zhuqi-lucas:reverse_parquet
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+3,669
−51
Open
Changes from all commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
e8588b1
reverse parquet draft version
zhuqi-lucas 2cf2e31
Support limit pushdown for reverse scan
zhuqi-lucas 2f73a4a
Support row group level cache
zhuqi-lucas f546a7f
Merge branch 'main' into reverse_parquet
zhuqi-lucas 07ef9a2
fix
zhuqi-lucas c123a37
fmt
zhuqi-lucas 46cfd89
add more test
zhuqi-lucas 99e50de
Add metrics for reverse scan row groups.
zhuqi-lucas dbcf598
fix
zhuqi-lucas 12f74d6
Merge branch 'main' into reverse_parquet
zhuqi-lucas 2cfd73e
optimize code
zhuqi-lucas 3479672
Merge branch 'main' into reverse_parquet
zhuqi-lucas 98fac46
Add more comments
zhuqi-lucas 92b6487
fmt
zhuqi-lucas 475bf3d
Merge branch 'main' into reverse_parquet
zhuqi-lucas 8ccca52
add enable/disable option
zhuqi-lucas 5d63557
Merge branch 'main' into reverse_parquet
zhuqi-lucas a2b44a5
fix slt
zhuqi-lucas b9f8199
fix proto
zhuqi-lucas 3502c10
fix
zhuqi-lucas fca325c
Merge branch 'main' into reverse_parquet
zhuqi-lucas 9af4fba
Update doc
zhuqi-lucas 7a63ddd
Add reverse files testing in slt
zhuqi-lucas dfb29d7
Merge branch 'main' into reverse_parquet
zhuqi-lucas 52c9b30
Merge branch 'main' into reverse_parquet
zhuqi-lucas bb31251
simple test
zhuqi-lucas 45089c5
Change to sort pushdown architecture
zhuqi-lucas d15994b
Merge branch 'main' into reverse_parquet
zhuqi-lucas 9452005
fix
zhuqi-lucas d338461
make code easy
zhuqi-lucas 2d77d77
proto fix
zhuqi-lucas 2175b03
address review comments
zhuqi-lucas 325a9db
Merge remote-tracking branch 'upstream/main' into reverse_parquet
zhuqi-lucas a52c008
fix
zhuqi-lucas d2e008a
fix
zhuqi-lucas e51e781
fix
zhuqi-lucas 3227671
fix
zhuqi-lucas 3b2d4f5
support full test
zhuqi-lucas 2a477dd
fix
zhuqi-lucas cd04b73
fix
zhuqi-lucas e0754b2
Merge branch 'main' into reverse_parquet
zhuqi-lucas 86e027c
remove datasource from optimizer
zhuqi-lucas da4586b
Merge branch 'main' into reverse_parquet
zhuqi-lucas 354a82b
address new comments
zhuqi-lucas 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
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.
Can this support non-reverse cases where the query order is the same as the file order? i.e. can we eliminate sorts in that simpler case as well? Or does that already happen / was already implemented?