Skip to content
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

HDDS-1441. Remove usage of getRetryFailureException. (swagle) #745

Closed
wants to merge 5 commits into from

Conversation

swagle
Copy link
Contributor

@swagle swagle commented Apr 16, 2019

No description provided.

Copy link
Contributor

@bshashikant bshashikant left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for updating the patch Siddharth. RaftClientReply sends a status "isSuccess" and correspondingly have StateMachineException, NotReplicatedException and StateMachineException embedded. We can add some handling like this :

@@ -303,22 +311,18 @@ public XceiverClientReply sendCommandAsync(
               Time.monotonicNowNanos() - requestTime);
         }).thenApply(reply -> {
           try {
-            // we need to handle RaftRetryFailure Exception
-            RaftRetryFailureException raftRetryFailureException =
-                reply.getRetryFailureException();
-            if (raftRetryFailureException != null) {
-              // in case of raft retry failure, the raft client is
-              // not able to connect to the leader hence the pipeline
-              // can not be used but this instance of RaftClient will close
-              // and refreshed again. In case the client cannot connect to
-              // leader, getClient call will fail.
-
-              // No need to set the failed Server ID here. Ozone client
-              // will directly exclude this pipeline in next allocate block
-              // to SCM as in this case, it is the raft client which is not
-              // able to connect to leader in the pipeline, though the
-              // pipeline can still be functional.
-              throw new CompletionException(raftRetryFailureException);
+            Preconditions.checkNotNull(reply);
+            if (!reply.isSuccess()) {
+              IOException exception = null;
+              if (reply.getNotLeaderException() != null) {
+                exception = reply.getNotLeaderException();
+              } else if (reply.getNotReplicatedException() != null) {
+                exception = reply.getNotReplicatedException();
+              } else if (reply.getStateMachineException() != null) {
+                exception = reply.getStateMachineException();
+              }
+              Preconditions.checkNotNull(exception);
+              throw new CompletionException(exception);
             }
             ContainerCommandResponseProto response =
                 ContainerCommandResponseProto

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 41 Docker mode activated.
_ Prechecks _
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0 mvndep 218 Maven dependency ordering for branch
+1 mvninstall 1147 trunk passed
+1 compile 1289 trunk passed
+1 checkstyle 180 trunk passed
+1 mvnsite 266 trunk passed
+1 shadedclient 1271 branch has no errors when building and testing our client artifacts.
+1 findbugs 106 trunk passed
+1 javadoc 69 trunk passed
_ Patch Compile Tests _
0 mvndep 24 Maven dependency ordering for patch
+1 mvninstall 58 the patch passed
+1 compile 1129 the patch passed
+1 javac 1129 the patch passed
+1 checkstyle 168 the patch passed
+1 mvnsite 94 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 826 patch has no errors when building and testing our client artifacts.
+1 findbugs 130 the patch passed
+1 javadoc 72 the patch passed
_ Other Tests _
+1 unit 37 client in the patch passed.
+1 unit 96 ozone-manager in the patch passed.
+1 asflicense 68 The patch does not generate ASF License warnings.
7128
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/hadoop-multibranch/job/PR-745/1/artifact/out/Dockerfile
GITHUB PR #745
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 30eab6f7f5c5 4.4.0-144-generic #170~14.04.1-Ubuntu SMP Mon Mar 18 15:02:05 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / a5ceed2
maven version: Apache Maven 3.3.9
Default Java 1.8.0_191
findbugs v3.1.0-RC1
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-745/1/testReport/
Max. process+thread count 371 (vs. ulimit of 5500)
modules C: hadoop-hdds/client hadoop-ozone/ozone-manager U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-745/1/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@swagle
Copy link
Contributor Author

swagle commented Apr 16, 2019

Thanks, @bshashikant for your review comments. Updated the patch with suggested changes.

Although, wouldn't it be better to have a generic exception class in Ratis that can have derived classes on the server side? It would allow separation of concerns for server and client vs now any new type exception will break the client side code in at runtime. Its not like we are doing anything with the exception, only wrapping it up.

@bshashikant
Copy link
Contributor

I just verified that with Ratis-518, the exception field in RaftClientReply is already exposed. We can just wrap the exception inside RaftClientReply to completionException instead of checking for any specific exceptions. To acheive this, Ratis version needs to be updated inside Ozone.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 32 Docker mode activated.
_ Prechecks _
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0 mvndep 276 Maven dependency ordering for branch
+1 mvninstall 1046 trunk passed
+1 compile 962 trunk passed
+1 checkstyle 130 trunk passed
+1 mvnsite 109 trunk passed
+1 shadedclient 970 branch has no errors when building and testing our client artifacts.
+1 findbugs 99 trunk passed
+1 javadoc 69 trunk passed
_ Patch Compile Tests _
0 mvndep 21 Maven dependency ordering for patch
+1 mvninstall 60 the patch passed
+1 compile 898 the patch passed
+1 javac 898 the patch passed
+1 checkstyle 136 the patch passed
+1 mvnsite 80 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 675 patch has no errors when building and testing our client artifacts.
+1 findbugs 101 the patch passed
+1 javadoc 47 the patch passed
_ Other Tests _
+1 unit 24 client in the patch passed.
+1 unit 41 ozone-manager in the patch passed.
+1 asflicense 34 The patch does not generate ASF License warnings.
5834
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/hadoop-multibranch/job/PR-745/3/artifact/out/Dockerfile
GITHUB PR #745
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 427845516e5b 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / be6c801
maven version: Apache Maven 3.3.9
Default Java 1.8.0_191
findbugs v3.1.0-RC1
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-745/3/testReport/
Max. process+thread count 446 (vs. ulimit of 5500)
modules C: hadoop-hdds/client hadoop-ozone/ozone-manager U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-745/3/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 25 Docker mode activated.
_ Prechecks _
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0 mvndep 820 Maven dependency ordering for branch
+1 mvninstall 1059 trunk passed
+1 compile 967 trunk passed
+1 checkstyle 140 trunk passed
+1 mvnsite 107 trunk passed
+1 shadedclient 997 branch has no errors when building and testing our client artifacts.
+1 findbugs 102 trunk passed
+1 javadoc 74 trunk passed
_ Patch Compile Tests _
0 mvndep 23 Maven dependency ordering for patch
+1 mvninstall 60 the patch passed
+1 compile 923 the patch passed
+1 javac 923 the patch passed
+1 checkstyle 142 the patch passed
+1 mvnsite 80 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 690 patch has no errors when building and testing our client artifacts.
+1 findbugs 117 the patch passed
+1 javadoc 70 the patch passed
_ Other Tests _
+1 unit 37 client in the patch passed.
+1 unit 56 ozone-manager in the patch passed.
+1 asflicense 49 The patch does not generate ASF License warnings.
6573
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/hadoop-multibranch/job/PR-745/2/artifact/out/Dockerfile
GITHUB PR #745
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 3feb6c7539b9 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / be6c801
maven version: Apache Maven 3.3.9
Default Java 1.8.0_191
findbugs v3.1.0-RC1
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-745/2/testReport/
Max. process+thread count 436 (vs. ulimit of 5500)
modules C: hadoop-hdds/client hadoop-ozone/ozone-manager U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-745/2/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@elek
Copy link
Member

elek commented Apr 18, 2019

/retest

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 26 Docker mode activated.
_ Prechecks _
+1 @author 1 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0 mvndep 73 Maven dependency ordering for branch
+1 mvninstall 1063 trunk passed
+1 compile 1102 trunk passed
+1 checkstyle 132 trunk passed
+1 mvnsite 330 trunk passed
+1 shadedclient 1169 branch has no errors when building and testing our client artifacts.
0 findbugs 0 Skipped patched modules with no Java source: hadoop-hdds hadoop-ozone
+1 findbugs 84 trunk passed
+1 javadoc 205 trunk passed
_ Patch Compile Tests _
0 mvndep 25 Maven dependency ordering for patch
-1 mvninstall 35 hadoop-hdds in the patch failed.
-1 mvninstall 10 client in the patch failed.
-1 mvninstall 15 hadoop-ozone in the patch failed.
-1 mvninstall 10 ozone-manager in the patch failed.
+1 compile 1036 the patch passed
+1 javac 1036 the patch passed
+1 checkstyle 136 the patch passed
-1 mvnsite 26 hadoop-hdds in the patch failed.
-1 mvnsite 19 client in the patch failed.
-1 mvnsite 22 hadoop-ozone in the patch failed.
-1 mvnsite 20 ozone-manager in the patch failed.
+1 whitespace 0 The patch has no whitespace issues.
+1 xml 2 The patch has no ill-formed XML file.
+1 shadedclient 654 patch has no errors when building and testing our client artifacts.
0 findbugs 0 Skipped patched modules with no Java source: hadoop-hdds hadoop-ozone
-1 findbugs 19 client in the patch failed.
-1 findbugs 20 ozone-manager in the patch failed.
-1 javadoc 21 hadoop-hdds in the patch failed.
-1 javadoc 19 client in the patch failed.
-1 javadoc 23 hadoop-ozone in the patch failed.
-1 javadoc 20 ozone-manager in the patch failed.
_ Other Tests _
-1 unit 24 hadoop-hdds in the patch failed.
-1 unit 19 client in the patch failed.
-1 unit 21 hadoop-ozone in the patch failed.
-1 unit 17 ozone-manager in the patch failed.
+1 asflicense 36 The patch does not generate ASF License warnings.
6200
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/Dockerfile
GITHUB PR #745
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle xml
uname Linux f341cca78ccd 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / df76cdc
maven version: Apache Maven 3.3.9
Default Java 1.8.0_191
findbugs v3.1.0-RC1
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-mvninstall-hadoop-hdds.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-mvninstall-hadoop-hdds_client.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-mvninstall-hadoop-ozone.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-mvninstall-hadoop-ozone_ozone-manager.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-mvnsite-hadoop-hdds.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-mvnsite-hadoop-hdds_client.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-mvnsite-hadoop-ozone.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-mvnsite-hadoop-ozone_ozone-manager.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-findbugs-hadoop-hdds_client.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-findbugs-hadoop-ozone_ozone-manager.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-javadoc-hadoop-hdds.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-javadoc-hadoop-hdds_client.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-javadoc-hadoop-ozone.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-javadoc-hadoop-ozone_ozone-manager.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-unit-hadoop-hdds.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-unit-hadoop-hdds_client.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-unit-hadoop-ozone.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/artifact/out/patch-unit-hadoop-ozone_ozone-manager.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/testReport/
Max. process+thread count 446 (vs. ulimit of 5500)
modules C: hadoop-hdds hadoop-hdds/client hadoop-ozone hadoop-ozone/ozone-manager U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-745/4/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 61 Docker mode activated.
_ Prechecks _
+1 @author 1 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0 mvndep 314 Maven dependency ordering for branch
+1 mvninstall 1437 trunk passed
+1 compile 1384 trunk passed
+1 checkstyle 167 trunk passed
+1 mvnsite 461 trunk passed
+1 shadedclient 1411 branch has no errors when building and testing our client artifacts.
0 findbugs 0 Skipped patched modules with no Java source: hadoop-hdds hadoop-ozone
+1 findbugs 95 trunk passed
+1 javadoc 221 trunk passed
_ Patch Compile Tests _
0 mvndep 25 Maven dependency ordering for patch
-1 mvninstall 39 hadoop-hdds in the patch failed.
-1 mvninstall 12 client in the patch failed.
-1 mvninstall 16 hadoop-ozone in the patch failed.
-1 mvninstall 12 ozone-manager in the patch failed.
+1 compile 915 the patch passed
+1 javac 915 the patch passed
+1 checkstyle 141 the patch passed
-1 mvnsite 26 hadoop-hdds in the patch failed.
-1 mvnsite 21 client in the patch failed.
-1 mvnsite 26 hadoop-ozone in the patch failed.
-1 mvnsite 22 ozone-manager in the patch failed.
+1 whitespace 0 The patch has no whitespace issues.
+1 xml 2 The patch has no ill-formed XML file.
+1 shadedclient 707 patch has no errors when building and testing our client artifacts.
0 findbugs 0 Skipped patched modules with no Java source: hadoop-hdds hadoop-ozone
-1 findbugs 21 client in the patch failed.
-1 findbugs 21 ozone-manager in the patch failed.
-1 javadoc 23 hadoop-hdds in the patch failed.
-1 javadoc 21 client in the patch failed.
-1 javadoc 23 hadoop-ozone in the patch failed.
-1 javadoc 22 ozone-manager in the patch failed.
_ Other Tests _
-1 unit 28 hadoop-hdds in the patch failed.
-1 unit 23 client in the patch failed.
-1 unit 24 hadoop-ozone in the patch failed.
-1 unit 22 ozone-manager in the patch failed.
+1 asflicense 42 The patch does not generate ASF License warnings.
7423
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/Dockerfile
GITHUB PR #745
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle xml
uname Linux 76c5899e4a1b 4.4.0-143-generic #169~14.04.2-Ubuntu SMP Wed Feb 13 15:00:41 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / a54c1e3
maven version: Apache Maven 3.3.9
Default Java 1.8.0_191
findbugs v3.1.0-RC1
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-mvninstall-hadoop-hdds.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-mvninstall-hadoop-hdds_client.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-mvninstall-hadoop-ozone.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-mvninstall-hadoop-ozone_ozone-manager.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-mvnsite-hadoop-hdds.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-mvnsite-hadoop-hdds_client.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-mvnsite-hadoop-ozone.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-mvnsite-hadoop-ozone_ozone-manager.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-findbugs-hadoop-hdds_client.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-findbugs-hadoop-ozone_ozone-manager.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-javadoc-hadoop-hdds.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-javadoc-hadoop-hdds_client.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-javadoc-hadoop-ozone.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-javadoc-hadoop-ozone_ozone-manager.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-unit-hadoop-hdds.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-unit-hadoop-hdds_client.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-unit-hadoop-ozone.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/artifact/out/patch-unit-hadoop-ozone_ozone-manager.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/testReport/
Max. process+thread count 341 (vs. ulimit of 5500)
modules C: hadoop-hdds hadoop-hdds/client hadoop-ozone hadoop-ozone/ozone-manager U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-745/5/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 503 Docker mode activated.
_ Prechecks _
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0 mvndep 69 Maven dependency ordering for branch
+1 mvninstall 1075 trunk passed
+1 compile 991 trunk passed
+1 checkstyle 142 trunk passed
+1 mvnsite 350 trunk passed
+1 shadedclient 1219 branch has no errors when building and testing our client artifacts.
0 findbugs 0 Skipped patched modules with no Java source: hadoop-hdds hadoop-ozone
+1 findbugs 101 trunk passed
+1 javadoc 248 trunk passed
_ Patch Compile Tests _
0 mvndep 23 Maven dependency ordering for patch
-1 mvninstall 30 hadoop-hdds in the patch failed.
-1 mvninstall 13 client in the patch failed.
-1 mvninstall 17 hadoop-ozone in the patch failed.
-1 mvninstall 14 ozone-manager in the patch failed.
+1 compile 940 the patch passed
+1 javac 940 the patch passed
+1 checkstyle 143 the patch passed
-1 mvnsite 36 hadoop-hdds in the patch failed.
-1 mvnsite 31 client in the patch failed.
-1 mvnsite 32 hadoop-ozone in the patch failed.
-1 mvnsite 30 ozone-manager in the patch failed.
+1 whitespace 0 The patch has no whitespace issues.
+1 xml 2 The patch has no ill-formed XML file.
+1 shadedclient 685 patch has no errors when building and testing our client artifacts.
0 findbugs 0 Skipped patched modules with no Java source: hadoop-hdds hadoop-ozone
-1 findbugs 29 client in the patch failed.
-1 findbugs 30 ozone-manager in the patch failed.
-1 javadoc 33 hadoop-hdds in the patch failed.
-1 javadoc 30 client in the patch failed.
-1 javadoc 32 hadoop-ozone in the patch failed.
-1 javadoc 31 ozone-manager in the patch failed.
_ Other Tests _
-1 unit 37 hadoop-hdds in the patch failed.
-1 unit 30 client in the patch failed.
-1 unit 33 hadoop-ozone in the patch failed.
-1 unit 30 ozone-manager in the patch failed.
+1 asflicense 51 The patch does not generate ASF License warnings.
6842
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/Dockerfile
GITHUB PR #745
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle xml
uname Linux ac00b42338c9 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 43b2a4b
maven version: Apache Maven 3.3.9
Default Java 1.8.0_191
findbugs v3.1.0-RC1
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-mvninstall-hadoop-hdds.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-mvninstall-hadoop-hdds_client.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-mvninstall-hadoop-ozone.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-mvninstall-hadoop-ozone_ozone-manager.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-mvnsite-hadoop-hdds.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-mvnsite-hadoop-hdds_client.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-mvnsite-hadoop-ozone.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-mvnsite-hadoop-ozone_ozone-manager.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-findbugs-hadoop-hdds_client.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-findbugs-hadoop-ozone_ozone-manager.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-javadoc-hadoop-hdds.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-javadoc-hadoop-hdds_client.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-javadoc-hadoop-ozone.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-javadoc-hadoop-ozone_ozone-manager.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-unit-hadoop-hdds.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-unit-hadoop-hdds_client.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-unit-hadoop-ozone.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/artifact/out/patch-unit-hadoop-ozone_ozone-manager.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/testReport/
Max. process+thread count 410 (vs. ulimit of 5500)
modules C: hadoop-hdds hadoop-hdds/client hadoop-ozone hadoop-ozone/ozone-manager U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-745/6/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 28 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0 mvndep 22 Maven dependency ordering for branch
+1 mvninstall 405 trunk passed
+1 compile 203 trunk passed
+1 checkstyle 47 trunk passed
+1 mvnsite 0 trunk passed
+1 shadedclient 796 branch has no errors when building and testing our client artifacts.
+1 javadoc 122 trunk passed
0 spotbugs 234 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 417 trunk passed
_ Patch Compile Tests _
0 mvndep 25 Maven dependency ordering for patch
-1 mvninstall 38 hadoop-hdds in the patch failed.
-1 mvninstall 15 hadoop-ozone in the patch failed.
-1 compile 18 hadoop-hdds in the patch failed.
-1 compile 16 hadoop-ozone in the patch failed.
-1 javac 18 hadoop-hdds in the patch failed.
-1 javac 16 hadoop-ozone in the patch failed.
-0 checkstyle 17 The patch fails to run checkstyle in hadoop-hdds
-0 checkstyle 14 The patch fails to run checkstyle in hadoop-ozone
+1 mvnsite 0 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 xml 3 The patch has no ill-formed XML file.
+1 shadedclient 628 patch has no errors when building and testing our client artifacts.
-1 javadoc 19 hadoop-hdds in the patch failed.
-1 javadoc 17 hadoop-ozone in the patch failed.
-1 findbugs 30 hadoop-hdds in the patch failed.
-1 findbugs 18 hadoop-ozone in the patch failed.
_ Other Tests _
-1 unit 24 hadoop-hdds in the patch failed.
-1 unit 17 hadoop-ozone in the patch failed.
+1 asflicense 25 The patch does not generate ASF License warnings.
3067
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/Dockerfile
GITHUB PR #745
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle xml
uname Linux 007e5e55bb1d 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 12b7059
Default Java 1.8.0_191
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/patch-mvninstall-hadoop-hdds.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/patch-mvninstall-hadoop-ozone.txt
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/patch-compile-hadoop-hdds.txt
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/patch-compile-hadoop-ozone.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/patch-compile-hadoop-hdds.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/patch-compile-hadoop-ozone.txt
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out//home/jenkins/jenkins-slave/workspace/hadoop-multibranch_PR-745/out/maven-patch-checkstyle-hadoop-hdds.txt
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out//home/jenkins/jenkins-slave/workspace/hadoop-multibranch_PR-745/out/maven-patch-checkstyle-hadoop-ozone.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/patch-javadoc-hadoop-hdds.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/patch-javadoc-hadoop-ozone.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/patch-findbugs-hadoop-hdds.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/patch-findbugs-hadoop-ozone.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/patch-unit-hadoop-hdds.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/testReport/
Max. process+thread count 446 (vs. ulimit of 5500)
modules C: hadoop-hdds hadoop-hdds/client hadoop-ozone hadoop-ozone/ozone-manager U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-745/7/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 29 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0 mvndep 63 Maven dependency ordering for branch
+1 mvninstall 409 trunk passed
+1 compile 201 trunk passed
+1 checkstyle 54 trunk passed
+1 mvnsite 0 trunk passed
+1 shadedclient 822 branch has no errors when building and testing our client artifacts.
+1 javadoc 129 trunk passed
0 spotbugs 233 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 412 trunk passed
_ Patch Compile Tests _
0 mvndep 25 Maven dependency ordering for patch
-1 mvninstall 37 hadoop-hdds in the patch failed.
-1 mvninstall 20 hadoop-ozone in the patch failed.
-1 compile 24 hadoop-hdds in the patch failed.
-1 compile 17 hadoop-ozone in the patch failed.
-1 javac 24 hadoop-hdds in the patch failed.
-1 javac 17 hadoop-ozone in the patch failed.
-0 checkstyle 16 The patch fails to run checkstyle in hadoop-hdds
-0 checkstyle 15 The patch fails to run checkstyle in hadoop-ozone
+1 mvnsite 0 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 xml 3 The patch has no ill-formed XML file.
+1 shadedclient 650 patch has no errors when building and testing our client artifacts.
-1 javadoc 19 hadoop-hdds in the patch failed.
-1 javadoc 18 hadoop-ozone in the patch failed.
-1 findbugs 30 hadoop-hdds in the patch failed.
-1 findbugs 18 hadoop-ozone in the patch failed.
_ Other Tests _
-1 unit 26 hadoop-hdds in the patch failed.
-1 unit 17 hadoop-ozone in the patch failed.
+1 asflicense 30 The patch does not generate ASF License warnings.
3203
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/Dockerfile
GITHUB PR #745
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle xml
uname Linux 4d958e09fd2f 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / f257497
Default Java 1.8.0_191
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/patch-mvninstall-hadoop-hdds.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/patch-mvninstall-hadoop-ozone.txt
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/patch-compile-hadoop-hdds.txt
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/patch-compile-hadoop-ozone.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/patch-compile-hadoop-hdds.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/patch-compile-hadoop-ozone.txt
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out//home/jenkins/jenkins-slave/workspace/hadoop-multibranch_PR-745/out/maven-patch-checkstyle-hadoop-hdds.txt
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out//home/jenkins/jenkins-slave/workspace/hadoop-multibranch_PR-745/out/maven-patch-checkstyle-hadoop-ozone.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/patch-javadoc-hadoop-hdds.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/patch-javadoc-hadoop-ozone.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/patch-findbugs-hadoop-hdds.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/patch-findbugs-hadoop-ozone.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/patch-unit-hadoop-hdds.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/testReport/
Max. process+thread count 441 (vs. ulimit of 5500)
modules C: hadoop-hdds hadoop-hdds/client hadoop-ozone hadoop-ozone/ozone-manager U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-745/8/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@bshashikant
Copy link
Contributor

/retest

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 541 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0 mvndep 70 Maven dependency ordering for branch
+1 mvninstall 415 trunk passed
+1 compile 194 trunk passed
+1 checkstyle 45 trunk passed
+1 mvnsite 0 trunk passed
+1 shadedclient 759 branch has no errors when building and testing our client artifacts.
+1 javadoc 124 trunk passed
0 spotbugs 238 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 417 trunk passed
_ Patch Compile Tests _
0 mvndep 25 Maven dependency ordering for patch
-1 mvninstall 38 hadoop-hdds in the patch failed.
-1 mvninstall 19 hadoop-ozone in the patch failed.
-1 compile 23 hadoop-hdds in the patch failed.
-1 compile 17 hadoop-ozone in the patch failed.
-1 javac 23 hadoop-hdds in the patch failed.
-1 javac 17 hadoop-ozone in the patch failed.
-0 checkstyle 17 The patch fails to run checkstyle in hadoop-hdds
-0 checkstyle 15 The patch fails to run checkstyle in hadoop-ozone
+1 mvnsite 0 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 xml 3 The patch has no ill-formed XML file.
+1 shadedclient 658 patch has no errors when building and testing our client artifacts.
-1 javadoc 20 hadoop-hdds in the patch failed.
-1 javadoc 17 hadoop-ozone in the patch failed.
-1 findbugs 30 hadoop-hdds in the patch failed.
-1 findbugs 17 hadoop-ozone in the patch failed.
_ Other Tests _
-1 unit 26 hadoop-hdds in the patch failed.
-1 unit 18 hadoop-ozone in the patch failed.
+1 asflicense 29 The patch does not generate ASF License warnings.
3656
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/Dockerfile
GITHUB PR #745
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle xml
uname Linux 58a8cc4d18f6 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 2d8282b
Default Java 1.8.0_212
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/patch-mvninstall-hadoop-hdds.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/patch-mvninstall-hadoop-ozone.txt
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/patch-compile-hadoop-hdds.txt
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/patch-compile-hadoop-ozone.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/patch-compile-hadoop-hdds.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/patch-compile-hadoop-ozone.txt
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out//home/jenkins/jenkins-slave/workspace/hadoop-multibranch_PR-745/out/maven-patch-checkstyle-hadoop-hdds.txt
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out//home/jenkins/jenkins-slave/workspace/hadoop-multibranch_PR-745/out/maven-patch-checkstyle-hadoop-ozone.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/patch-javadoc-hadoop-hdds.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/patch-javadoc-hadoop-ozone.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/patch-findbugs-hadoop-hdds.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/patch-findbugs-hadoop-ozone.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/patch-unit-hadoop-hdds.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/testReport/
Max. process+thread count 426 (vs. ulimit of 5500)
modules C: hadoop-hdds hadoop-hdds/client hadoop-ozone hadoop-ozone/ozone-manager U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-745/9/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@bshashikant
Copy link
Contributor

Thanks @swagle for working on this. Patch looks good to me. I will e rep-triggering the tests to see it comes clean.

@bshashikant
Copy link
Contributor

/retest

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 27 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0 mvndep 22 Maven dependency ordering for branch
+1 mvninstall 515 trunk passed
+1 compile 279 trunk passed
+1 checkstyle 67 trunk passed
+1 mvnsite 0 trunk passed
+1 shadedclient 784 branch has no errors when building and testing our client artifacts.
+1 javadoc 136 trunk passed
0 spotbugs 197 Used deprecated FindBugs config; considering switching to SpotBugs.
-1 findbugs 74 hadoop-ozone in trunk failed.
_ Patch Compile Tests _
0 mvndep 27 Maven dependency ordering for patch
-1 mvninstall 36 hadoop-hdds in the patch failed.
-1 mvninstall 23 hadoop-ozone in the patch failed.
-1 compile 23 hadoop-hdds in the patch failed.
-1 compile 17 hadoop-ozone in the patch failed.
-1 javac 23 hadoop-hdds in the patch failed.
-1 javac 17 hadoop-ozone in the patch failed.
-0 checkstyle 15 The patch fails to run checkstyle in hadoop-hdds
-0 checkstyle 15 The patch fails to run checkstyle in hadoop-ozone
+1 mvnsite 0 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 xml 3 The patch has no ill-formed XML file.
+1 shadedclient 616 patch has no errors when building and testing our client artifacts.
-1 javadoc 20 hadoop-hdds in the patch failed.
-1 javadoc 20 hadoop-ozone in the patch failed.
-1 findbugs 33 hadoop-hdds in the patch failed.
-1 findbugs 18 hadoop-ozone in the patch failed.
_ Other Tests _
-1 unit 27 hadoop-hdds in the patch failed.
-1 unit 16 hadoop-ozone in the patch failed.
+1 asflicense 32 The patch does not generate ASF License warnings.
5517
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/Dockerfile
GITHUB PR #745
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle xml
uname Linux 4a990de1d159 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / ff5691c
Default Java 1.8.0_212
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/branch-findbugs-hadoop-ozone.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/patch-mvninstall-hadoop-hdds.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/patch-mvninstall-hadoop-ozone.txt
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/patch-compile-hadoop-hdds.txt
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/patch-compile-hadoop-ozone.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/patch-compile-hadoop-hdds.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/patch-compile-hadoop-ozone.txt
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out//home/jenkins/jenkins-slave/workspace/hadoop-multibranch_PR-745/out/maven-patch-checkstyle-hadoop-hdds.txt
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out//home/jenkins/jenkins-slave/workspace/hadoop-multibranch_PR-745/out/maven-patch-checkstyle-hadoop-ozone.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/patch-javadoc-hadoop-hdds.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/patch-javadoc-hadoop-ozone.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/patch-findbugs-hadoop-hdds.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/patch-findbugs-hadoop-ozone.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/patch-unit-hadoop-hdds.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/testReport/
Max. process+thread count 411 (vs. ulimit of 5500)
modules C: hadoop-hdds hadoop-hdds/client hadoop-ozone hadoop-ozone/ozone-manager U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-745/10/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@swagle
Copy link
Contributor Author

swagle commented May 21, 2019

/retest

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 35 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0 mvndep 64 Maven dependency ordering for branch
+1 mvninstall 523 trunk passed
+1 compile 278 trunk passed
+1 checkstyle 77 trunk passed
+1 mvnsite 0 trunk passed
+1 shadedclient 876 branch has no errors when building and testing our client artifacts.
+1 javadoc 162 trunk passed
0 spotbugs 288 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 476 trunk passed
_ Patch Compile Tests _
0 mvndep 32 Maven dependency ordering for patch
-1 mvninstall 45 hadoop-hdds in the patch failed.
-1 mvninstall 31 hadoop-ozone in the patch failed.
-1 compile 33 hadoop-hdds in the patch failed.
-1 compile 24 hadoop-ozone in the patch failed.
-1 javac 33 hadoop-hdds in the patch failed.
-1 javac 24 hadoop-ozone in the patch failed.
-0 checkstyle 25 The patch fails to run checkstyle in hadoop-hdds
-0 checkstyle 19 The patch fails to run checkstyle in hadoop-ozone
+1 mvnsite 0 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 xml 3 The patch has no ill-formed XML file.
+1 shadedclient 676 patch has no errors when building and testing our client artifacts.
-1 javadoc 30 hadoop-hdds in the patch failed.
-1 javadoc 26 hadoop-ozone in the patch failed.
-1 findbugs 38 hadoop-hdds in the patch failed.
-1 findbugs 25 hadoop-ozone in the patch failed.
_ Other Tests _
-1 unit 34 hadoop-hdds in the patch failed.
-1 unit 25 hadoop-ozone in the patch failed.
+1 asflicense 42 The patch does not generate ASF License warnings.
6426
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/Dockerfile
GITHUB PR #745
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle xml
uname Linux 0867764ea142 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / ff5691c
Default Java 1.8.0_212
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/patch-mvninstall-hadoop-hdds.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/patch-mvninstall-hadoop-ozone.txt
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/patch-compile-hadoop-hdds.txt
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/patch-compile-hadoop-ozone.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/patch-compile-hadoop-hdds.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/patch-compile-hadoop-ozone.txt
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out//home/jenkins/jenkins-slave/workspace/hadoop-multibranch_PR-745/out/maven-patch-checkstyle-hadoop-hdds.txt
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out//home/jenkins/jenkins-slave/workspace/hadoop-multibranch_PR-745/out/maven-patch-checkstyle-hadoop-ozone.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/patch-javadoc-hadoop-hdds.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/patch-javadoc-hadoop-ozone.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/patch-findbugs-hadoop-hdds.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/patch-findbugs-hadoop-ozone.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/patch-unit-hadoop-hdds.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/testReport/
Max. process+thread count 445 (vs. ulimit of 5500)
modules C: hadoop-hdds hadoop-hdds/client hadoop-ozone hadoop-ozone/ozone-manager U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-745/11/console
versions git=2.7.4 maven=3.3.9 findbugs=3.1.0-RC1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@bshashikant
Copy link
Contributor

@swagle , i think the ratis snapshot version is incorrect as it leads to compilation failure. There are some more critical issues in Ratis which need to e addressed before we create a new snapshot and update the same in Ozone. Let's wait for the required fixes to go in Ratis and then update here.

@swagle
Copy link
Contributor Author

swagle commented Jun 6, 2019

Changes included in HDDS-1555: #846

@swagle swagle closed this Jun 6, 2019
shanthoosh pushed a commit to shanthoosh/hadoop that referenced this pull request Oct 15, 2019
Author: Jagadish <[email protected]>

Reviewers: Jagadish<[email protected]>

Closes apache#745 from vjagadish1989/website-reorg20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants