Uh oh!
There was an error while loading. Please reload this page.
[SPARK-5444][Network]Add a retry to deal with the conflict port in netty server. - #4240
Closed
SaintBacchus wants to merge 1 commit into
Closed
[SPARK-5444][Network]Add a retry to deal with the conflict port in netty server.#4240SaintBacchus wants to merge 1 commit into
SaintBacchus wants to merge 1 commit into
Conversation
SparkQA
commented
Jan 28, 2015
Test build #26212 has finished for PR 4240 at commit
|
andrewor14
commented
Feb 6, 2015
Contributor
LGTM merging this into master and 1.3. I added a few comments when I merged this. |
asfgit pushed a commit
that referenced
this pull request
Feb 6, 2015
…tty server. If the `spark.blockMnager.port` had conflicted with a specific port, Spark will throw an exception and exit. So add a retry to avoid this situation. Author: huangzhaowei <carlmartinmax@gmail.com> Closes#4240 from SaintBacchus/NettyPortConflict and squashes the following commits: cc926d2 [huangzhaowei] Add a retry to deal with the conflict port in netty server. (cherry picked from commit 2bda1c1) Signed-off-by: Andrew Or <andrew@databricks.com>
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.
If the
spark.blockMnager.porthad conflicted with a specific port, Spark will throw an exception and exit.So add a retry to avoid this situation.