-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Deterministically compute parquet page fragments that first see dictionary keys #22323
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
Closed
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
786f1e0
Phase 0
mhaseeb123 08f02ae
OPT: assign parquet dict_ids in first-appearance order (#13995)
mhaseeb123 5cc906e
OPT: per-page variable bit-width RLE for parquet dict indices (#13995)
mhaseeb123 5b07584
Update benchmark
mhaseeb123 1f2c46c
Merge branch 'main' into fea/pq-dict-encode-optimize
mhaseeb123 7dd5460
Improve tests
mhaseeb123 4600d21
Minor
mhaseeb123 14469b9
Minor
mhaseeb123 fda8a8a
Humanize phase 1
mhaseeb123 816902b
Clean up
mhaseeb123 6686d19
humanize gtest
mhaseeb123 47f7ad3
Cleanup
mhaseeb123 47012e2
Cleanup
mhaseeb123 cdc379e
Cleanup
mhaseeb123 589f9d0
Humanize phase 2
mhaseeb123 6982ab4
Merge branch 'main' into fea/pq-dict-encode-optimize
mhaseeb123 01c41f6
Style fix
mhaseeb123 46761ec
Humanize phase 3
mhaseeb123 3ffbf46
Add todo
mhaseeb123 818d9a0
Minor
mhaseeb123 e84dfc6
Style again
mhaseeb123 2954870
Copilot's comments
mhaseeb123 db808a7
Minor
mhaseeb123 b9209e9
Minor
mhaseeb123 ccc7bf9
Apply suggestion from @mhaseeb123
mhaseeb123 9a755c1
Use freq instead of hot to match with rare
mhaseeb123 6da2c43
Merge branch 'main' into fea/pq-dict-encode-optimize
mhaseeb123 2aa81ed
Deterministic approach
mhaseeb123 b0ea235
Merge branch 'main' into fea/deterministic-dict-encode
mhaseeb123 0141e2a
Merge branch 'main' into fea/deterministic-dict-encode
mhaseeb123 90800f3
Remove unnecessary changes from #22279
mhaseeb123 30d3ae9
Minor improvements
mhaseeb123 5765143
Merge branch 'main' into fea/deterministic-dict-encode
mhaseeb123 21898fd
style fix
mhaseeb123 df9dacf
Merge branch 'main' into fea/deterministic-dict-encode
mhaseeb123 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.
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.
@pmattione-nvidia Part 1, phase 1 with this PR becomes this
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.
Is the time spent here on reading slot->second or on the add? If it's on reading slot->second you could keep counters while filling the map in the first place.