Uh oh!
There was an error while loading. Please reload this page.
ARROW-10591: [Rust] Improve take (-20 to -40%) - #8670
Closed
jorgecarleitao wants to merge 11 commits into
Closed
Conversation
nevi-me
self-requested a review
November 15, 2020 12:57
jorgecarleitao
commented
Nov 15, 2020
MemberAuthor
I am still not comfortable with this, so I am closing it for now. |
drusso
commented
Nov 15, 2020
Contributor
This looks like a neat take on take (pardon the pun!). Is there anything in particular preventing adoption of this approach? |
jorgecarleitao
commented
Nov 16, 2020
MemberAuthor
Performance: with the fix on the benchmarks for |
drusso
commented
Nov 17, 2020
Contributor
Got it, thanks for clarifying. |
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 freeto 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.
TL;DR:
StructArraytakeofStructArrayandListArraytakeby 1.2-1.9Motivation
Same motivation as #8630 plus solving the following issues:
They are all inter-connected, which made it difficult to solve one without solving the other (as the tests either pass or don't).
This PR
This PR extends
MutableDataArrayto support extending theMutableDataArraywith nulls, thereby allowing to correctly implementtakeandfilterforStructArray. Specifically, currently,takefor structs with nulls is incorrect (ARROW-10593)filterdoes not supportStructArray(ARROW-10591)This PR fixes both issues.
This PR also converts the implementation of
taketo useMutableDataArray, thereby reducing the chance of bugs and maintenance burden, as well as performance. While doing that, I found 1 bug and 1 improvement, that this PR addresses:takehas a bug on which nulls are not correctly taken into account (ARROW-10593)taketakes all values from a struct array, even when we are just taking a null (ARROW-10594)This PR fixes both issues.
Finally, this improves performance of
takeby 1.2-1.9x (which also impacts the performance of thesort).Benchmarks
set -e git checkout 010d260173a9e110901ca67372a4ac379a615a13 cargo bench --bench filter_kernels git checkout mutable_filter cargo bench --bench filter_kernels