[SPARK-29139][CORE][TESTS] Increase timeout to wait for executor(s) to be up in SparkContextSuite#25864
Closed
HeartSaVioR wants to merge 1 commit into
Closed
[SPARK-29139][CORE][TESTS] Increase timeout to wait for executor(s) to be up in SparkContextSuite#25864HeartSaVioR wants to merge 1 commit into
HeartSaVioR wants to merge 1 commit into
Conversation
… in SparkContextSuite
Contributor
Author
|
Please refer below link to see rationalization of the change: |
HyukjinKwon
approved these changes
Sep 20, 2019
Member
|
Please use |
dongjoon-hyun
approved these changes
Sep 20, 2019
|
Test build #111044 has finished for PR 25864 at commit
|
Contributor
Author
|
retest this, please |
|
Test build #111050 has finished for PR 25864 at commit
|
srowen
approved these changes
Sep 20, 2019
Member
|
Merged to master. |
Member
|
Thank you, @HeartSaVioR , @HyukjinKwon , @srowen . |
Contributor
Author
|
Thanks all for reviewing and merging! |
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.
What changes were proposed in this pull request?
This patch proposes to increase timeout to wait for executor(s) to be up in SparkContextSuite, as we observed these tests failed due to wait timeout.
Why are the changes needed?
There's some case that CI build is extremely slow which requires 3x or more time to pass the test.
(https://issues.apache.org/jira/browse/SPARK-29139?focusedCommentId=16934034&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-16934034)
Allocating higher timeout wouldn't bring additional latency, as the code checks the condition with sleeping 10 ms per loop iteration.
Does this PR introduce any user-facing change?
No
How was this patch tested?
N/A, as the case is not likely to be occurred frequently.