hadoop icon indicating copy to clipboard operation
hadoop copied to clipboard

YARN-11622. Fix ResourceManager asynchronous switch from Standy to Active exception

Open hiwangzhihui opened this issue 2 years ago • 26 comments

Description of PR

YARN-11622 Fix ResourceManager asynchronous switch from Standy to Active exception

How was this patch tested?

add TestRMHA.testTransitionToActiveFailedAfterToStandbyNotSkip add TestRMHA.testLessEpochRMFatalToStandbyRunnerShouldNotExecute

For code changes:

  • [ ] Does the title or this PR starts with the corresponding JIRA issue id (e.g. 'HADOOP-17799. Your PR title ...')?
  • [ ] Object storage: have the integration tests been executed and the endpoint declared according to the connector-specific documentation?
  • [ ] If adding new dependencies to the code, are these dependencies licensed in a way that is compatible for inclusion under ASF 2.0?
  • [ ] If applicable, have you updated the LICENSE, LICENSE-binary, NOTICE-binary files?

hiwangzhihui avatar Dec 13 '23 11:12 hiwangzhihui

@hiwangzhihui Thank you for your contribution! I have a question, why did active RM lose contact with ZK? Is it because Active RM has full gc? Even if the situation described in your JIRA occurs, the cluster should have completed the HA switch. Has the original standby RM changed to active RM?

slfan1989 avatar Dec 13 '23 12:12 slfan1989

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 4m 46s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 1 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 33m 44s branch-3.3 passed
+1 :green_heart: compile 0m 33s branch-3.3 passed
+1 :green_heart: checkstyle 0m 27s branch-3.3 passed
+1 :green_heart: mvnsite 0m 37s branch-3.3 passed
+1 :green_heart: javadoc 0m 31s branch-3.3 passed
+1 :green_heart: spotbugs 1m 12s branch-3.3 passed
+1 :green_heart: shadedclient 21m 43s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 35s the patch passed
+1 :green_heart: compile 0m 30s the patch passed
+1 :green_heart: javac 0m 29s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
-0 :warning: checkstyle 0m 19s /results-checkstyle-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 70 new + 67 unchanged - 0 fixed = 137 total (was 67)
+1 :green_heart: mvnsite 0m 33s the patch passed
+1 :green_heart: javadoc 0m 22s the patch passed
-1 :x: spotbugs 1m 13s /new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager generated 2 new + 0 unchanged - 0 fixed = 2 total (was 0)
+1 :green_heart: shadedclient 21m 23s patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 :green_heart: unit 79m 53s hadoop-yarn-server-resourcemanager in the patch passed.
-1 :x: asflicense 0m 24s /results-asflicense.txt The patch generated 1 ASF License warnings.
169m 32s
Reason Tests
SpotBugs module:hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Exceptional return value of java.util.concurrent.ExecutorService.submit(Callable) ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:[line 1133]
Should org.apache.hadoop.yarn.server.resourcemanager.TransitionToActiveStandbyRunner$TransitionToActiveStandbyResult be a static inner class? At TransitionToActiveStandbyRunner.java:inner class? At TransitionToActiveStandbyRunner.java:[lines 46-60]
Subsystem Report/Notes
Docker ClientAPI=1.43 ServerAPI=1.43 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/1/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux 0a5f4c65cda5 5.15.0-88-generic #98-Ubuntu SMP Mon Oct 2 15:18:56 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / 92dfea62646a984db4b57683111587c6564ad2f3
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/1/testReport/
Max. process+thread count 948 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/1/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Dec 13 '23 13:12 hadoop-yetus

@hiwangzhihui Thank you for your contribution! I have a question, why did active RM lose contact with ZK? Is it because Active RM has full gc? Even if the situation described in your JIRA occurs, the cluster should have completed the HA switch. Has the original standby RM changed to active RM?

The cause is the Zookeeper server is unstable. Standby RM has successfully changed to active Rm.

hiwangzhihui avatar Dec 14 '23 07:12 hiwangzhihui

@hiwangzhihui Thank you for your contribution! I have a question, why did active RM lose contact with ZK? Is it because Active RM has full gc? Even if the situation described in your JIRA occurs, the cluster should have completed the HA switch. Has the original standby RM changed to active RM?

In the issue YARN-11625, The Active ResourceManager fails to switch when happens an exception.

hiwangzhihui avatar Dec 14 '23 07:12 hiwangzhihui

@hiwangzhihui Thank you for your contribution! I have a question, why did active RM lose contact with ZK? Is it because Active RM has full gc? Even if the situation described in your JIRA occurs, the cluster should have completed the HA switch. Has the original standby RM changed to active RM?

hiwangzhihui avatar Dec 14 '23 07:12 hiwangzhihui

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 0m 21s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 1 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 35m 22s branch-3.3 passed
+1 :green_heart: compile 0m 32s branch-3.3 passed
+1 :green_heart: checkstyle 0m 24s branch-3.3 passed
+1 :green_heart: mvnsite 0m 34s branch-3.3 passed
+1 :green_heart: javadoc 0m 28s branch-3.3 passed
+1 :green_heart: spotbugs 1m 10s branch-3.3 passed
+1 :green_heart: shadedclient 22m 36s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 32s the patch passed
+1 :green_heart: compile 0m 27s the patch passed
+1 :green_heart: javac 0m 27s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
-0 :warning: checkstyle 0m 16s /results-checkstyle-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 64 new + 67 unchanged - 0 fixed = 131 total (was 67)
+1 :green_heart: mvnsite 0m 30s the patch passed
+1 :green_heart: javadoc 0m 19s the patch passed
-1 :x: spotbugs 1m 9s /new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager generated 2 new + 0 unchanged - 0 fixed = 2 total (was 0)
+1 :green_heart: shadedclient 23m 22s patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 :green_heart: unit 77m 21s hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 24s The patch does not generate ASF License warnings.
166m 58s
Reason Tests
SpotBugs module:hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Exceptional return value of java.util.concurrent.ExecutorService.submit(Callable) ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:[line 1132]
Should org.apache.hadoop.yarn.server.resourcemanager.TransitionToActiveStandbyRunner$TransitionToActiveStandbyResult be a static inner class? At TransitionToActiveStandbyRunner.java:inner class? At TransitionToActiveStandbyRunner.java:[lines 64-78]
Subsystem Report/Notes
Docker ClientAPI=1.43 ServerAPI=1.43 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/2/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux 1409d555494d 5.15.0-88-generic #98-Ubuntu SMP Mon Oct 2 15:18:56 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / 7594b9ffe927e9fc8c3bf7201907d8a5c3f59b99
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/2/testReport/
Max. process+thread count 905 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/2/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Dec 14 '23 09:12 hadoop-yetus

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 0m 21s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 1 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 34m 49s branch-3.3 passed
+1 :green_heart: compile 0m 30s branch-3.3 passed
+1 :green_heart: checkstyle 0m 23s branch-3.3 passed
+1 :green_heart: mvnsite 0m 34s branch-3.3 passed
+1 :green_heart: javadoc 0m 28s branch-3.3 passed
+1 :green_heart: spotbugs 1m 8s branch-3.3 passed
+1 :green_heart: shadedclient 23m 19s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 31s the patch passed
+1 :green_heart: compile 0m 28s the patch passed
+1 :green_heart: javac 0m 28s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
-0 :warning: checkstyle 0m 17s /results-checkstyle-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 65 new + 67 unchanged - 0 fixed = 132 total (was 67)
+1 :green_heart: mvnsite 0m 30s the patch passed
+1 :green_heart: javadoc 0m 20s the patch passed
-1 :x: spotbugs 1m 10s /new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager generated 2 new + 0 unchanged - 0 fixed = 2 total (was 0)
+1 :green_heart: shadedclient 23m 12s patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 :green_heart: unit 78m 27s hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 24s The patch does not generate ASF License warnings.
168m 24s
Reason Tests
SpotBugs module:hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Exceptional return value of java.util.concurrent.ExecutorService.submit(Callable) ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:[line 1132]
Should org.apache.hadoop.yarn.server.resourcemanager.TransitionToActiveStandbyRunner$TransitionToActiveStandbyResult be a static inner class? At TransitionToActiveStandbyRunner.java:inner class? At TransitionToActiveStandbyRunner.java:[lines 64-78]
Subsystem Report/Notes
Docker ClientAPI=1.43 ServerAPI=1.43 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/3/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux 22546f611ee5 5.15.0-88-generic #98-Ubuntu SMP Mon Oct 2 15:18:56 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / e8cda3fa073311f8266421f05e8818cb9fea8f3a
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/3/testReport/
Max. process+thread count 945 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/3/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Dec 14 '23 09:12 hadoop-yetus

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 3m 44s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 1 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 48m 55s branch-3.3 passed
+1 :green_heart: compile 0m 51s branch-3.3 passed
+1 :green_heart: checkstyle 0m 42s branch-3.3 passed
+1 :green_heart: mvnsite 0m 59s branch-3.3 passed
+1 :green_heart: javadoc 0m 45s branch-3.3 passed
+1 :green_heart: spotbugs 1m 55s branch-3.3 passed
+1 :green_heart: shadedclient 36m 50s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 54s the patch passed
+1 :green_heart: compile 0m 47s the patch passed
+1 :green_heart: javac 0m 47s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
-0 :warning: checkstyle 0m 32s /results-checkstyle-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 65 new + 68 unchanged - 0 fixed = 133 total (was 68)
+1 :green_heart: mvnsite 0m 51s the patch passed
+1 :green_heart: javadoc 0m 32s the patch passed
-1 :x: spotbugs 1m 58s /new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager generated 2 new + 0 unchanged - 0 fixed = 2 total (was 0)
+1 :green_heart: shadedclient 37m 39s patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 :green_heart: unit 91m 40s hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 35s The patch does not generate ASF License warnings.
231m 36s
Reason Tests
SpotBugs module:hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Exceptional return value of java.util.concurrent.ExecutorService.submit(Callable) ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:[line 1132]
Should org.apache.hadoop.yarn.server.resourcemanager.TransitionToActiveStandbyRunner$TransitionToActiveStandbyResult be a static inner class? At TransitionToActiveStandbyRunner.java:inner class? At TransitionToActiveStandbyRunner.java:[lines 64-78]
Subsystem Report/Notes
Docker ClientAPI=1.43 ServerAPI=1.43 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/4/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux 05d22095f668 5.15.0-88-generic #98-Ubuntu SMP Mon Oct 2 15:18:56 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / e8cda3fa073311f8266421f05e8818cb9fea8f3a
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/4/testReport/
Max. process+thread count 961 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/4/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Dec 14 '23 11:12 hadoop-yetus

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 0m 32s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 1 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 47m 28s branch-3.3 passed
+1 :green_heart: compile 0m 53s branch-3.3 passed
+1 :green_heart: checkstyle 0m 42s branch-3.3 passed
+1 :green_heart: mvnsite 1m 0s branch-3.3 passed
+1 :green_heart: javadoc 0m 45s branch-3.3 passed
+1 :green_heart: spotbugs 1m 55s branch-3.3 passed
+1 :green_heart: shadedclient 37m 36s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 54s the patch passed
+1 :green_heart: compile 0m 47s the patch passed
+1 :green_heart: javac 0m 47s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
-0 :warning: checkstyle 0m 31s /results-checkstyle-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 65 new + 68 unchanged - 0 fixed = 133 total (was 68)
+1 :green_heart: mvnsite 0m 50s the patch passed
+1 :green_heart: javadoc 0m 33s the patch passed
-1 :x: spotbugs 1m 59s /new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager generated 2 new + 0 unchanged - 0 fixed = 2 total (was 0)
+1 :green_heart: shadedclient 40m 19s patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 :green_heart: unit 91m 48s hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 34s The patch does not generate ASF License warnings.
230m 35s
Reason Tests
SpotBugs module:hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Exceptional return value of java.util.concurrent.ExecutorService.submit(Callable) ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:[line 1132]
Should org.apache.hadoop.yarn.server.resourcemanager.TransitionToActiveStandbyRunner$TransitionToActiveStandbyResult be a static inner class? At TransitionToActiveStandbyRunner.java:inner class? At TransitionToActiveStandbyRunner.java:[lines 64-78]
Subsystem Report/Notes
Docker ClientAPI=1.43 ServerAPI=1.43 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/5/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux 1e0849ac3c48 5.15.0-88-generic #98-Ubuntu SMP Mon Oct 2 15:18:56 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / e8cda3fa073311f8266421f05e8818cb9fea8f3a
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/5/testReport/
Max. process+thread count 946 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/5/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Dec 14 '23 11:12 hadoop-yetus

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 0m 20s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 1 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 33m 47s branch-3.3 passed
+1 :green_heart: compile 0m 34s branch-3.3 passed
+1 :green_heart: checkstyle 0m 26s branch-3.3 passed
+1 :green_heart: mvnsite 0m 38s branch-3.3 passed
+1 :green_heart: javadoc 0m 30s branch-3.3 passed
+1 :green_heart: spotbugs 1m 14s branch-3.3 passed
+1 :green_heart: shadedclient 21m 23s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 35s the patch passed
+1 :green_heart: compile 0m 31s the patch passed
+1 :green_heart: javac 0m 31s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
-0 :warning: checkstyle 0m 19s /results-checkstyle-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 65 new + 67 unchanged - 0 fixed = 132 total (was 67)
+1 :green_heart: mvnsite 0m 33s the patch passed
+1 :green_heart: javadoc 0m 23s the patch passed
-1 :x: spotbugs 1m 17s /new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
+1 :green_heart: shadedclient 21m 15s patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 :green_heart: unit 78m 10s hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 24s The patch does not generate ASF License warnings.
163m 1s
Reason Tests
SpotBugs module:hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Exceptional return value of java.util.concurrent.ExecutorService.submit(Callable) ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager$RMFatalEventDispatcher.handle(RMFatalEvent) At ResourceManager.java:ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager$RMFatalEventDispatcher.handle(RMFatalEvent) At ResourceManager.java:[line 1005]
Subsystem Report/Notes
Docker ClientAPI=1.43 ServerAPI=1.43 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/6/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux 5090dd5d03a3 5.15.0-88-generic #98-Ubuntu SMP Mon Oct 2 15:18:56 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / b3f4933c2a30fa3435b18da52526421de6085692
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/6/testReport/
Max. process+thread count 930 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/6/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Dec 14 '23 14:12 hadoop-yetus

@hiwangzhihui Can we fix checkstyle and spotbugs issue ? Because this PR involves changes to RM, we need to be more careful. Can we reproduce this issue? Can you provide some configuration and provide some steps?

slfan1989 avatar Dec 15 '23 05:12 slfan1989

@hiwangzhihui Can we fix checkstyle and spotbugs issue ? Because this PR involves changes to RM, we need to be more careful. Can we reproduce this issue? Can you provide some configuration and provide some steps?

The Spotbug warning is to expect RMFatalToStandbyRunner to submit and wait for its execution result. If waiting for the execution result synchronously results in a "cyclic dependency" issue; However, in the call method of TransitionToActiveStandbyRunnern, both execution results and exceptions have been uniformly processed and log printed. The RMFatalToStandbyRunner execution results only have two results: ① successful execution ② Execution exception failed, RM process exited. My opinion is this warning can be ignored in this scene, As adding a thread to wait for the result would be redundant. @slfan1989 How does view and handle this warning? I would like to hear your opinion again.

hiwangzhihui avatar Jan 02 '24 11:01 hiwangzhihui

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 4m 7s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 1 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 34m 32s branch-3.3 passed
+1 :green_heart: compile 0m 30s branch-3.3 passed
+1 :green_heart: checkstyle 0m 24s branch-3.3 passed
+1 :green_heart: mvnsite 0m 36s branch-3.3 passed
+1 :green_heart: javadoc 0m 28s branch-3.3 passed
+1 :green_heart: spotbugs 1m 9s branch-3.3 passed
+1 :green_heart: shadedclient 22m 12s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 30s the patch passed
+1 :green_heart: compile 0m 27s the patch passed
+1 :green_heart: javac 0m 27s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
-0 :warning: checkstyle 0m 21s /results-checkstyle-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 2 new + 66 unchanged - 1 fixed = 68 total (was 67)
+1 :green_heart: mvnsite 0m 28s the patch passed
+1 :green_heart: javadoc 0m 17s the patch passed
-1 :x: spotbugs 1m 14s /new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
+1 :green_heart: shadedclient 22m 35s patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 :green_heart: unit 77m 24s hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 24s The patch does not generate ASF License warnings.
168m 28s
Reason Tests
SpotBugs module:hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Exceptional return value of java.util.concurrent.ExecutorService.submit(Callable) ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:[line 1131]
Subsystem Report/Notes
Docker ClientAPI=1.43 ServerAPI=1.43 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/7/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux 8cf1e1a7058b 5.15.0-88-generic #98-Ubuntu SMP Mon Oct 2 15:18:56 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / 5b713ed148e3724626a80fe27bedc28ac2d42957
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/7/testReport/
Max. process+thread count 928 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/7/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Jan 02 '24 13:01 hadoop-yetus

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 0m 20s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 1 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 34m 59s branch-3.3 passed
+1 :green_heart: compile 0m 27s branch-3.3 passed
+1 :green_heart: checkstyle 0m 26s branch-3.3 passed
+1 :green_heart: mvnsite 0m 37s branch-3.3 passed
+1 :green_heart: javadoc 0m 30s branch-3.3 passed
+1 :green_heart: spotbugs 1m 8s branch-3.3 passed
+1 :green_heart: shadedclient 22m 31s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 27s the patch passed
+1 :green_heart: compile 0m 28s the patch passed
+1 :green_heart: javac 0m 28s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
-0 :warning: checkstyle 0m 17s /results-checkstyle-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 2 new + 66 unchanged - 1 fixed = 68 total (was 67)
+1 :green_heart: mvnsite 0m 32s the patch passed
+1 :green_heart: javadoc 0m 21s the patch passed
-1 :x: spotbugs 1m 10s /new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
+1 :green_heart: shadedclient 22m 29s patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 :green_heart: unit 79m 12s hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 25s The patch does not generate ASF License warnings.
167m 22s
Reason Tests
SpotBugs module:hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Exceptional return value of java.util.concurrent.ExecutorService.submit(Callable) ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:[line 1131]
Subsystem Report/Notes
Docker ClientAPI=1.43 ServerAPI=1.43 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/8/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux 28e7cb248cd3 5.15.0-88-generic #98-Ubuntu SMP Mon Oct 2 15:18:56 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / b96e1b5c12775549a674caeb440b3f1cd4c93ac2
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/8/testReport/
Max. process+thread count 947 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/8/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Jan 02 '24 14:01 hadoop-yetus

/new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html

@hiwangzhihui I'll take a look at this later. I've been a little busy lately.

slfan1989 avatar Jan 02 '24 23:01 slfan1989

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 0m 21s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 1 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 66m 37s branch-3.3 passed
+1 :green_heart: compile 0m 33s branch-3.3 passed
+1 :green_heart: checkstyle 0m 27s branch-3.3 passed
+1 :green_heart: mvnsite 0m 37s branch-3.3 passed
+1 :green_heart: javadoc 2m 20s branch-3.3 passed
+1 :green_heart: spotbugs 1m 12s branch-3.3 passed
+1 :green_heart: shadedclient 22m 16s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 31s the patch passed
+1 :green_heart: compile 0m 27s the patch passed
+1 :green_heart: javac 0m 27s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
+1 :green_heart: checkstyle 0m 20s hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 0 new + 66 unchanged - 1 fixed = 66 total (was 67)
+1 :green_heart: mvnsite 0m 30s the patch passed
+1 :green_heart: javadoc 0m 21s the patch passed
-1 :x: spotbugs 1m 14s /new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
+1 :green_heart: shadedclient 21m 34s patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 :green_heart: unit 75m 34s hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 23s The patch does not generate ASF License warnings.
196m 13s
Reason Tests
SpotBugs module:hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Exceptional return value of java.util.concurrent.ExecutorService.submit(Callable) ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:[line 1131]
Subsystem Report/Notes
Docker ClientAPI=1.43 ServerAPI=1.43 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/9/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux 8243ad94cb2d 5.15.0-88-generic #98-Ubuntu SMP Mon Oct 2 15:18:56 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / b1202a8f8f6e6d94a0319dfa54264a0a31e3825a
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/9/testReport/
Max. process+thread count 939 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/9/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Jan 05 '24 12:01 hadoop-yetus

/new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html

@hiwangzhihui I'll take a look at this later. I've been a little busy lately.

Me too, I will solve the above problems and questions as soon as I have time

hiwangzhihui avatar Jan 08 '24 15:01 hiwangzhihui

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 4m 20s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 1 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 33m 44s branch-3.3 passed
+1 :green_heart: compile 0m 35s branch-3.3 passed
+1 :green_heart: checkstyle 0m 28s branch-3.3 passed
+1 :green_heart: mvnsite 0m 40s branch-3.3 passed
+1 :green_heart: javadoc 0m 30s branch-3.3 passed
+1 :green_heart: spotbugs 1m 14s branch-3.3 passed
+1 :green_heart: shadedclient 21m 17s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 34s the patch passed
+1 :green_heart: compile 0m 29s the patch passed
+1 :green_heart: javac 0m 29s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
+1 :green_heart: checkstyle 0m 19s hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 0 new + 66 unchanged - 1 fixed = 66 total (was 67)
+1 :green_heart: mvnsite 0m 29s the patch passed
+1 :green_heart: javadoc 0m 22s the patch passed
-1 :x: spotbugs 1m 15s /new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
+1 :green_heart: shadedclient 21m 33s patch has no errors when building and testing our client artifacts.
_ Other Tests _
-1 :x: unit 78m 12s /patch-unit-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 23s The patch does not generate ASF License warnings.
167m 20s
Reason Tests
SpotBugs module:hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Exceptional return value of java.util.concurrent.ExecutorService.submit(Callable) ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:[line 1131]
Failed junit tests hadoop.yarn.server.resourcemanager.TestRMHA
Subsystem Report/Notes
Docker ClientAPI=1.43 ServerAPI=1.43 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/10/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux f16f271e28e6 5.15.0-88-generic #98-Ubuntu SMP Mon Oct 2 15:18:56 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / 5ae791898e1e8d053e7aebefd0532ff533b09087
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/10/testReport/
Max. process+thread count 934 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/10/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Jan 18 '24 18:01 hadoop-yetus

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 6m 7s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 1 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 46m 10s branch-3.3 passed
+1 :green_heart: compile 0m 56s branch-3.3 passed
+1 :green_heart: checkstyle 0m 44s branch-3.3 passed
+1 :green_heart: mvnsite 1m 1s branch-3.3 passed
+1 :green_heart: javadoc 0m 47s branch-3.3 passed
+1 :green_heart: spotbugs 1m 56s branch-3.3 passed
+1 :green_heart: shadedclient 35m 46s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 56s the patch passed
+1 :green_heart: compile 0m 47s the patch passed
+1 :green_heart: javac 0m 47s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
+1 :green_heart: checkstyle 0m 31s hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 0 new + 67 unchanged - 1 fixed = 67 total (was 68)
+1 :green_heart: mvnsite 0m 52s the patch passed
+1 :green_heart: javadoc 0m 34s the patch passed
-1 :x: spotbugs 1m 59s /new-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.html hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
+1 :green_heart: shadedclient 35m 22s patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 :green_heart: unit 91m 27s hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 35s The patch does not generate ASF License warnings.
228m 4s
Reason Tests
SpotBugs module:hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Exceptional return value of java.util.concurrent.ExecutorService.submit(Callable) ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:ignored in org.apache.hadoop.yarn.server.resourcemanager.ResourceManager.handleTransitionToStandByInNewThread() At ResourceManager.java:[line 1131]
Subsystem Report/Notes
Docker ClientAPI=1.44 ServerAPI=1.44 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/11/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux d0db6dadbf15 5.15.0-88-generic #98-Ubuntu SMP Mon Oct 2 15:18:56 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / 59252a76d39ea9520acc7cfd39216bbb01a36767
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/11/testReport/
Max. process+thread count 948 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/11/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Jan 19 '24 20:01 hadoop-yetus

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 3m 53s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 2 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 33m 43s branch-3.3 passed
+1 :green_heart: compile 0m 37s branch-3.3 passed
+1 :green_heart: checkstyle 0m 29s branch-3.3 passed
+1 :green_heart: mvnsite 0m 42s branch-3.3 passed
+1 :green_heart: javadoc 0m 33s branch-3.3 passed
+1 :green_heart: spotbugs 1m 15s branch-3.3 passed
+1 :green_heart: shadedclient 22m 1s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 35s the patch passed
+1 :green_heart: compile 0m 30s the patch passed
+1 :green_heart: javac 0m 30s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
+1 :green_heart: checkstyle 0m 18s hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 0 new + 66 unchanged - 1 fixed = 66 total (was 67)
+1 :green_heart: mvnsite 0m 32s the patch passed
+1 :green_heart: javadoc 0m 23s the patch passed
+1 :green_heart: spotbugs 1m 11s the patch passed
+1 :green_heart: shadedclient 23m 5s patch has no errors when building and testing our client artifacts.
_ Other Tests _
-1 :x: unit 77m 28s /patch-unit-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 22s The patch does not generate ASF License warnings.
169m 3s
Reason Tests
Failed junit tests hadoop.yarn.server.resourcemanager.TestApplicationMasterLauncher
Subsystem Report/Notes
Docker ClientAPI=1.45 ServerAPI=1.45 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/12/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux cdda08d8ad0b 5.15.0-94-generic #104-Ubuntu SMP Tue Jan 9 15:25:40 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / e71bf8e6c219a1f9a6ab0c8c032631c8f4dd6425
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/12/testReport/
Max. process+thread count 964 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/12/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Apr 16 '24 10:04 hadoop-yetus

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 0m 20s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 2 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 33m 42s branch-3.3 passed
+1 :green_heart: compile 0m 37s branch-3.3 passed
+1 :green_heart: checkstyle 0m 29s branch-3.3 passed
+1 :green_heart: mvnsite 0m 41s branch-3.3 passed
+1 :green_heart: javadoc 0m 33s branch-3.3 passed
+1 :green_heart: spotbugs 1m 15s branch-3.3 passed
+1 :green_heart: shadedclient 22m 25s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 35s the patch passed
+1 :green_heart: compile 0m 32s the patch passed
+1 :green_heart: javac 0m 32s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
+1 :green_heart: checkstyle 0m 18s hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 0 new + 66 unchanged - 1 fixed = 66 total (was 67)
+1 :green_heart: mvnsite 0m 33s the patch passed
+1 :green_heart: javadoc 0m 22s the patch passed
+1 :green_heart: spotbugs 1m 12s the patch passed
+1 :green_heart: shadedclient 22m 10s patch has no errors when building and testing our client artifacts.
_ Other Tests _
-1 :x: unit 78m 50s /patch-unit-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 26s The patch does not generate ASF License warnings.
166m 35s
Reason Tests
Failed junit tests hadoop.yarn.server.resourcemanager.TestApplicationMasterLauncher
Subsystem Report/Notes
Docker ClientAPI=1.45 ServerAPI=1.45 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/13/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
uname Linux 809d9c31990d 5.15.0-94-generic #104-Ubuntu SMP Tue Jan 9 15:25:40 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / dd7de21ff1b1db9f214b2c14379cd6f8aab70b41
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/13/testReport/
Max. process+thread count 962 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/13/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Apr 17 '24 15:04 hadoop-yetus

hi, @dineshchitlangia I have submitted the latest code, please review it again. The results and exceptions will be tracked in TransitionToActiveStandbyRunner.call method. About failed TestCases: TestApplication MasterLauncher can pass locally. but TestFSConfigToCSConfigConverterMain mishandled "System.exit" and caused the process to exit. I will fix TestFSConfigToCSConfigConverterMain separately afterward.

hiwangzhihui avatar Apr 18 '24 02:04 hiwangzhihui

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 0m 22s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+0 :ok: xmllint 0m 0s xmllint was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 4 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 33m 26s branch-3.3 passed
+1 :green_heart: compile 0m 38s branch-3.3 passed
+1 :green_heart: checkstyle 0m 27s branch-3.3 passed
+1 :green_heart: mvnsite 0m 41s branch-3.3 passed
+1 :green_heart: javadoc 0m 30s branch-3.3 passed
+1 :green_heart: spotbugs 1m 15s branch-3.3 passed
+1 :green_heart: shadedclient 21m 57s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
-1 :x: mvninstall 0m 30s /patch-mvninstall-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-server-resourcemanager in the patch failed.
-1 :x: compile 0m 28s /patch-compile-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-server-resourcemanager in the patch failed.
-1 :x: javac 0m 28s /patch-compile-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-server-resourcemanager in the patch failed.
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
+1 :green_heart: checkstyle 0m 18s hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 0 new + 66 unchanged - 9 fixed = 66 total (was 75)
-1 :x: mvnsite 0m 31s /patch-mvnsite-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-server-resourcemanager in the patch failed.
+1 :green_heart: javadoc 0m 23s the patch passed
-1 :x: spotbugs 0m 30s /patch-spotbugs-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-server-resourcemanager in the patch failed.
-1 :x: shadedclient 8m 7s patch has errors when building and testing our client artifacts.
_ Other Tests _
-1 :x: unit 0m 31s /patch-unit-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-server-resourcemanager in the patch failed.
+1 :green_heart: asflicense 0m 24s The patch does not generate ASF License warnings.
70m 57s
Subsystem Report/Notes
Docker ClientAPI=1.45 ServerAPI=1.45 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/14/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient codespell detsecrets xmllint spotbugs checkstyle
uname Linux f0988caf4fea 5.15.0-94-generic #104-Ubuntu SMP Tue Jan 9 15:25:40 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / 2ce52c37b47baf8bfc6d7c78634799ee9b367d66
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/14/testReport/
Max. process+thread count 557 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/14/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Apr 20 '24 16:04 hadoop-yetus

:broken_heart: -1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 3m 59s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+0 :ok: xmllint 0m 0s xmllint was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 3 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 33m 28s branch-3.3 passed
+1 :green_heart: compile 0m 37s branch-3.3 passed
+1 :green_heart: checkstyle 0m 28s branch-3.3 passed
+1 :green_heart: mvnsite 0m 41s branch-3.3 passed
+1 :green_heart: javadoc 0m 32s branch-3.3 passed
+1 :green_heart: spotbugs 1m 16s branch-3.3 passed
+1 :green_heart: shadedclient 21m 43s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 36s the patch passed
+1 :green_heart: compile 0m 30s the patch passed
+1 :green_heart: javac 0m 30s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
+1 :green_heart: checkstyle 0m 19s hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 0 new + 66 unchanged - 2 fixed = 66 total (was 68)
+1 :green_heart: mvnsite 0m 31s the patch passed
+1 :green_heart: javadoc 0m 25s the patch passed
+1 :green_heart: spotbugs 1m 15s the patch passed
+1 :green_heart: shadedclient 21m 50s patch has no errors when building and testing our client artifacts.
_ Other Tests _
-1 :x: unit 78m 38s /patch-unit-hadoop-yarn-project_hadoop-yarn_hadoop-yarn-server_hadoop-yarn-server-resourcemanager.txt hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 25s The patch does not generate ASF License warnings.
168m 30s
Reason Tests
Failed junit tests hadoop.yarn.server.resourcemanager.TestRMHA
Subsystem Report/Notes
Docker ClientAPI=1.45 ServerAPI=1.45 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/15/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient codespell detsecrets xmllint spotbugs checkstyle
uname Linux a78ebb5045b9 5.15.0-94-generic #104-Ubuntu SMP Tue Jan 9 15:25:40 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / 2e5c5a262f54e8b1994b39b4e4537b16fd525da6
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/15/testReport/
Max. process+thread count 941 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/15/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar Apr 22 '24 07:04 hadoop-yetus

:confetti_ball: +1 overall

Vote Subsystem Runtime Logfile Comment
+0 :ok: reexec 3m 48s Docker mode activated.
_ Prechecks _
+1 :green_heart: dupname 0m 0s No case conflicting files found.
+0 :ok: codespell 0m 0s codespell was not available.
+0 :ok: detsecrets 0m 0s detect-secrets was not available.
+0 :ok: xmllint 0m 0s xmllint was not available.
+1 :green_heart: @author 0m 0s The patch does not contain any @author tags.
+1 :green_heart: test4tests 0m 0s The patch appears to include 3 new or modified test files.
_ branch-3.3 Compile Tests _
+1 :green_heart: mvninstall 33m 38s branch-3.3 passed
+1 :green_heart: compile 0m 36s branch-3.3 passed
+1 :green_heart: checkstyle 0m 28s branch-3.3 passed
+1 :green_heart: mvnsite 0m 39s branch-3.3 passed
+1 :green_heart: javadoc 0m 34s branch-3.3 passed
+1 :green_heart: spotbugs 1m 17s branch-3.3 passed
+1 :green_heart: shadedclient 21m 36s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 :green_heart: mvninstall 0m 35s the patch passed
+1 :green_heart: compile 0m 32s the patch passed
+1 :green_heart: javac 0m 32s the patch passed
+1 :green_heart: blanks 0m 0s The patch has no blanks issues.
+1 :green_heart: checkstyle 0m 21s hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager: The patch generated 0 new + 66 unchanged - 2 fixed = 66 total (was 68)
+1 :green_heart: mvnsite 0m 34s the patch passed
+1 :green_heart: javadoc 0m 24s the patch passed
+1 :green_heart: spotbugs 1m 15s the patch passed
+1 :green_heart: shadedclient 21m 37s patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 :green_heart: unit 78m 53s hadoop-yarn-server-resourcemanager in the patch passed.
+1 :green_heart: asflicense 0m 25s The patch does not generate ASF License warnings.
168m 38s
Subsystem Report/Notes
Docker ClientAPI=1.45 ServerAPI=1.45 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/16/artifact/out/Dockerfile
GITHUB PR https://github.com/apache/hadoop/pull/6352
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient codespell detsecrets xmllint spotbugs checkstyle
uname Linux 51964cb3034d 5.15.0-94-generic #104-Ubuntu SMP Tue Jan 9 15:25:40 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision branch-3.3 / fcdd4fddd6ed005e750afd4c399fb98ab976b7a1
Default Java Private Build-1.8.0_362-8u372-ga~us1-0ubuntu1~18.04-b09
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/16/testReport/
Max. process+thread count 942 (vs. ulimit of 5500)
modules C: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager U: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-6352/16/console
versions git=2.17.1 maven=3.6.0 spotbugs=4.2.2
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

hadoop-yetus avatar May 07 '24 17:05 hadoop-yetus

hi @slfan1989 @dineshchitlangia All details about this PR have been processed, If you have time to review it again. Thank you a lot.

hiwangzhihui avatar May 08 '24 02:05 hiwangzhihui