-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-34325][CORE] Remove unused shuffleBlockResolver variable inSortShuffleWriter #31433
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
[SPARK-34325][CORE] Remove unused shuffleBlockResolver variable inSortShuffleWriter #31433
Conversation
|
@srowen @HeartSaVioR Please take a review, thanks. |
| import org.apache.spark.util.collection.ExternalSorter | ||
|
|
||
| private[spark] class SortShuffleWriter[K, V, C]( | ||
| shuffleBlockResolver: IndexShuffleBlockResolver, |
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.
So, this is unused variable, @offthewall123 ?
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.
Yes, it's not used here, i think someone forget to remove this when separate this part logic to LocalDiskShuffleDataIO.
|
ok to test |
|
Kubernetes integration test starting |
|
Kubernetes integration test status success |
|
Test build #134767 has finished for PR 31433 at commit
|
srowen
left a comment
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.
Seems OK if it's really unused.
|
Merged to master. |
…tShuffleWriter ### What changes were proposed in this pull request? Remove unused shuffleBlockResolver variable in SortShuffleWriter. ### Why are the changes needed? For better code understanding. ### Does this PR introduce _any_ user-facing change? NO. ### How was this patch tested? End to End. Closes apache#31433 from offthewall123/remove_shuffleBlockResolver_in_SortShuffleWriter. Authored-by: offthewall123 <dingyu.xu@intel.com> Signed-off-by: HyukjinKwon <gurwls223@apache.org>
…tShuffleWriter ### What changes were proposed in this pull request? Remove unused shuffleBlockResolver variable in SortShuffleWriter. ### Why are the changes needed? For better code understanding. ### Does this PR introduce _any_ user-facing change? NO. ### How was this patch tested? End to End. Closes apache#31433 from offthewall123/remove_shuffleBlockResolver_in_SortShuffleWriter. Authored-by: offthewall123 <dingyu.xu@intel.com> Signed-off-by: HyukjinKwon <gurwls223@apache.org>
What changes were proposed in this pull request?
Remove unused shuffleBlockResolver variable in SortShuffleWriter.
Why are the changes needed?
For better code understanding.
Does this PR introduce any user-facing change?
NO.
How was this patch tested?
End to End.