-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-31235][TESTS][FOLLOWUP][test-maven][test-hadoop3.2] Fix Hadoop-3.2 profile UT failure #28550
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
|
|
||
| val rmAppManager = new RMAppManager(rmContext, | ||
| null, | ||
| mock(classOf[YarnScheduler]), |
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.
Without this, NPE occurs at this.scheduler of Hadoop code.
|
Test build #122699 has finished for PR 28550 at commit
|
|
Retest this please |
|
Test build #122701 has finished for PR 28550 at commit
|
This reverts commit 8b74398.
|
Oh, @HyukjinKwon . It seems that there is still issue (maybe at the last commit.) Sorry. |
This comment has been minimized.
This comment has been minimized.
|
I converted this PR into the Draft since this is flaky. |
This comment has been minimized.
This comment has been minimized.
|
Test build #122708 has finished for PR 28550 at commit
|
|
Test build #122709 has finished for PR 28550 at commit
|
|
Retest this please |
|
Test build #122711 has finished for PR 28550 at commit
|
|
Test build #122712 has finished for PR 28550 at commit
|
|
Test build #122713 has finished for PR 28550 at commit
|
|
It seems that I was confused because my local reproducer is not the same with Jenkins. For now, this has the same limitation with the previous reverted commit. I'll close this for now and revisit later. |
|
Test build #122706 has finished for PR 28550 at commit
|
|
Test build #122714 has finished for PR 28550 at commit
|
…ific type` in Hadoop-3.2 ### What changes were proposed in this pull request? This PR aims to recover Hadoop-3.2 profile jobs on `master` branch by disabling a UT added by SPARK-31235 in Hadoop 3.2 temporarily. The target UT is not a flaky test. It always fail on Hadoop-3.2 profile currently although it works in Hadoop 2.7 profile. So, in this PR, we keep the test coverage in Hadoop 2.7 and ignore the test in Hadoop 3.2 temporarily to unblock the other PRs. ### Why are the changes needed? SPARK-31235 added a test case which is breaking Hadoop 3.2 and there are two follow-up to fix it. Although two follow-ups can fix the UT in Hadoop 3.2 environment. The side-effect on Hadoop classes cause some random UT failures in the other suites. - #28456 - #28550 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the Jenkins with SBT/Maven. Closes #28552 from dongjoon-hyun/SPARK-31235-2. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
What changes were proposed in this pull request?
This PR aims to fix a UT failure in
Hadoop-3.2profile.Why are the changes needed?
Currently,
masterbranch Hadoop-3.2 profile jobs (SBT/Maven) are broken due to the consistent UT failure.Does this PR introduce any user-facing change?
No.
How was this patch tested?
Pass the Jenkins with Hadoop 3.2 profile (SBT/Maven).