ARROW-6417: [C++][Parquet] Miscellaneous optimizations yielding slightly better Parquet binary read performance#5268
Closed
wesm wants to merge 2 commits into
Closed
ARROW-6417: [C++][Parquet] Miscellaneous optimizations yielding slightly better Parquet binary read performance#5268wesm wants to merge 2 commits into
wesm wants to merge 2 commits into
Conversation
Member
Author
Member
|
Yes, better use a separate PR. When I tried locally the benchmark numbers were surprisingly unconvincing. |
Codecov Report
@@ Coverage Diff @@
## master #5268 +/- ##
=========================================
Coverage ? 89.22%
=========================================
Files ? 750
Lines ? 108428
Branches ? 0
=========================================
Hits ? 96744
Misses ? 11684
Partials ? 0
Continue to review full report at Codecov.
|
Member
Author
|
+1. I'm leaving the JIRA open because the performance issue is not resolved |
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.
A handful of things here:
UnsafeAppendon the primary binary read pathThis produces about 10% net benefit in a holistic benchmark script from Python. The microbenchmarks in parquet-encoding-benchmark are much more clear
before
after
The dictionary decoding case is unchanged; this should be optimized separately.