-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-9767] Remove ConnectionManager. #8161
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
Conversation
|
Test build #40748 has finished for PR 8161 at commit
|
|
Test build #40942 has finished for PR 8161 at commit
|
|
Test build #41350 has finished for PR 8161 at commit
|
|
Test build #41844 has finished for PR 8161 at commit
|
|
Test build #1710 has finished for PR 8161 at commit
|
|
Test build #41896 has finished for PR 8161 at commit
|
We introduced the Netty network module for shuffle in Spark 1.2, and has turned it on by default for 3 releases. The old ConnectionManager is difficult to maintain. It's time to remove it for Spark 1.6.
|
Test build #42045 has finished for PR 8161 at commit
|
|
I'm going to merge this since it continuously conflict with other Mima patches. cc @tdas to take a quick look at the streaming changes, and @andrewor14 or @JoshRosen to look at rest. |
|
LGTM to the streaming change. |
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.
line end
|
Looks alright. |
We introduced the Netty network module for shuffle in Spark 1.2, and has turned it on by default for 3 releases. The old ConnectionManager is difficult to maintain. If we merge the patch now, by the time it is released, it would be 1 yr for which ConnectionManager is off by default. It's time to remove it. Author: Reynold Xin <[email protected]> Closes apache#8161 from rxin/SPARK-9767.
…ervice` configuration ### What changes were proposed in this pull request? This PR aims to remove no-op `spark.shuffle.blockTransferService` configuration from Apache Spark code based. ### Why are the changes needed? The configuration was removed at Apache Spark 1.6.0. - #8161 ### Does this PR introduce _any_ user-facing change? No, this is a clean up of unused test code. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #52709 from dongjoon-hyun/SPARK-54005. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
…ervice` configuration ### What changes were proposed in this pull request? This PR aims to remove no-op `spark.shuffle.blockTransferService` configuration from Apache Spark code based. ### Why are the changes needed? The configuration was removed at Apache Spark 1.6.0. - apache#8161 ### Does this PR introduce _any_ user-facing change? No, this is a clean up of unused test code. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#52709 from dongjoon-hyun/SPARK-54005. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
We introduced the Netty network module for shuffle in Spark 1.2, and has turned it on by default for 3 releases. The old ConnectionManager is difficult to maintain. If we merge the patch now, by the time it is released, it would be 1 yr for which ConnectionManager is off by default. It's time to remove it.