Skip to content

HDDS-1950. S3 MPU part-list call fails if there are no parts #1278

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

Closed
wants to merge 3 commits into from

Conversation

elek
Copy link
Member

@elek elek commented Aug 11, 2019

If an S3 multipart upload is created but no part is upload the part list can't be called because it throws HTTP 500:

Create an MPU:

{code}
aws s3api --endpoint http://localhost:9999 create-multipart-upload --bucket=docker --key=testkeu
{
"Bucket": "docker",
"Key": "testkeu",
"UploadId": "85343e71-4c16-4a75-bb55-01f56a9339b2-102592678478217234"
}
{code}

List the parts:

{code}
aws s3api --endpoint http://localhost:9999 list-parts --bucket=docker --key=testkeu --upload-id=85343e71-4c16-4a75-bb55-01f56a9339b2-102592678478217234
{code}

It throws an exception on the server side, because in the KeyManagerImpl.listParts the ReplicationType is retrieved from the first part:

{code}
HddsProtos.ReplicationType replicationType =
partKeyInfoMap.firstEntry().getValue().getPartKeyInfo().getType();
{code}

Which is not yet available in this use case.

See: https://issues.apache.org/jira/browse/HDDS-1950

@elek elek added the ozone label Aug 11, 2019
@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 71 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 1 The patch appears to include 1 new or modified test files.
_ trunk Compile Tests _
+1 mvninstall 621 trunk passed
+1 compile 369 trunk passed
+1 checkstyle 76 trunk passed
+1 mvnsite 0 trunk passed
+1 shadedclient 946 branch has no errors when building and testing our client artifacts.
+1 javadoc 172 trunk passed
0 spotbugs 434 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 630 trunk passed
_ Patch Compile Tests _
+1 mvninstall 552 the patch passed
+1 compile 378 the patch passed
+1 javac 378 the patch passed
+1 checkstyle 76 the patch passed
+1 mvnsite 0 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 721 patch has no errors when building and testing our client artifacts.
+1 javadoc 165 the patch passed
+1 findbugs 648 the patch passed
_ Other Tests _
+1 unit 329 hadoop-hdds in the patch passed.
-1 unit 2376 hadoop-ozone in the patch failed.
+1 asflicense 45 The patch does not generate ASF License warnings.
8336
Reason Tests
Failed junit tests hadoop.hdds.scm.pipeline.TestRatisPipelineCreateAndDestory
hadoop.ozone.client.rpc.TestSecureOzoneRpcClient
hadoop.ozone.client.rpc.TestOzoneClientRetriesOnException
hadoop.ozone.client.rpc.TestMultiBlockWritesWithDnFailures
hadoop.ozone.TestMiniOzoneCluster
hadoop.ozone.client.rpc.TestOzoneRpcClient
Subsystem Report/Notes
Docker Client=18.09.7 Server=18.09.7 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/1/artifact/out/Dockerfile
GITHUB PR #1278
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 57d845d3eded 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / cf5d895
Default Java 1.8.0_212
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/1/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/1/testReport/
Max. process+thread count 5403 (vs. ulimit of 5500)
modules C: hadoop-ozone/ozone-manager U: hadoop-ozone/ozone-manager
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/1/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.

Copy link
Contributor

@lokeshj1703 lokeshj1703 left a comment

Choose a reason for hiding this comment

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

@elek Thanks for working on this! The changes look good to me. I have few minor comments.

Copy link
Contributor

@bharatviswa504 bharatviswa504 left a comment

Choose a reason for hiding this comment

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

Thank You @elek for catching this issue and fix.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 39 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 appears to include 1 new or modified test files.
_ trunk Compile Tests _
+1 mvninstall 609 trunk passed
+1 compile 358 trunk passed
+1 checkstyle 62 trunk passed
+1 mvnsite 0 trunk passed
+1 shadedclient 793 branch has no errors when building and testing our client artifacts.
+1 javadoc 142 trunk passed
0 spotbugs 437 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 625 trunk passed
_ Patch Compile Tests _
+1 mvninstall 545 the patch passed
+1 compile 352 the patch passed
+1 javac 352 the patch passed
+1 checkstyle 68 the patch passed
+1 mvnsite 0 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 616 patch has no errors when building and testing our client artifacts.
+1 javadoc 140 the patch passed
+1 findbugs 636 the patch passed
_ Other Tests _
+1 unit 303 hadoop-hdds in the patch passed.
-1 unit 2359 hadoop-ozone in the patch failed.
+1 asflicense 40 The patch does not generate ASF License warnings.
7827
Reason Tests
Failed junit tests hadoop.ozone.ozShell.TestOzoneShell
hadoop.hdds.scm.pipeline.TestSCMPipelineManager
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/2/artifact/out/Dockerfile
GITHUB PR #1278
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 7f58789619a2 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 / 9b8359b
Default Java 1.8.0_222
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/2/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/2/testReport/
Max. process+thread count 4733 (vs. ulimit of 5500)
modules C: hadoop-ozone/ozone-manager U: hadoop-ozone/ozone-manager
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/2/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

This comment has been minimized.

@hadoop-yetus

This comment has been minimized.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 35 Docker mode activated.
_ Prechecks _
+1 dupname 1 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
+1 test4tests 0 The patch appears to include 1 new or modified test files.
_ trunk Compile Tests _
+1 mvninstall 625 trunk passed
+1 compile 384 trunk passed
+1 checkstyle 75 trunk passed
+1 mvnsite 0 trunk passed
+1 shadedclient 950 branch has no errors when building and testing our client artifacts.
+1 javadoc 165 trunk passed
0 spotbugs 468 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 671 trunk passed
_ Patch Compile Tests _
+1 mvninstall 604 the patch passed
+1 compile 405 the patch passed
+1 javac 405 the patch passed
+1 checkstyle 87 the patch passed
+1 mvnsite 0 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 763 patch has no errors when building and testing our client artifacts.
+1 javadoc 173 the patch passed
+1 findbugs 707 the patch passed
_ Other Tests _
+1 unit 340 hadoop-hdds in the patch passed.
-1 unit 2432 hadoop-ozone in the patch failed.
+1 asflicense 57 The patch does not generate ASF License warnings.
8644
Reason Tests
Failed junit tests hadoop.ozone.client.rpc.TestFailureHandlingByClient
hadoop.ozone.client.rpc.TestOzoneClientRetriesOnException
hadoop.ozone.container.server.TestSecureContainerServer
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/5/artifact/out/Dockerfile
GITHUB PR #1278
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 5455e21c792f 4.15.0-54-generic #58-Ubuntu SMP Mon Jun 24 10:55:24 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 8aaf5e1
Default Java 1.8.0_222
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/5/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/5/testReport/
Max. process+thread count 4917 (vs. ulimit of 5500)
modules C: hadoop-ozone/ozone-manager U: hadoop-ozone/ozone-manager
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/5/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 76 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 appears to include 1 new or modified test files.
_ trunk Compile Tests _
+1 mvninstall 601 trunk passed
+1 compile 362 trunk passed
+1 checkstyle 72 trunk passed
+1 mvnsite 0 trunk passed
+1 shadedclient 922 branch has no errors when building and testing our client artifacts.
+1 javadoc 187 trunk passed
0 spotbugs 429 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 636 trunk passed
_ Patch Compile Tests _
+1 mvninstall 557 the patch passed
+1 compile 394 the patch passed
+1 javac 394 the patch passed
+1 checkstyle 75 the patch passed
+1 mvnsite 0 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 715 patch has no errors when building and testing our client artifacts.
+1 javadoc 186 the patch passed
+1 findbugs 722 the patch passed
_ Other Tests _
+1 unit 351 hadoop-hdds in the patch passed.
-1 unit 2904 hadoop-ozone in the patch failed.
+1 asflicense 53 The patch does not generate ASF License warnings.
8992
Reason Tests
Failed junit tests hadoop.ozone.client.rpc.TestOzoneRpcClient
hadoop.ozone.client.rpc.TestOzoneRpcClientWithRatis
hadoop.ozone.client.rpc.TestSecureOzoneRpcClient
hadoop.ozone.TestStorageContainerManager
hadoop.hdds.scm.pipeline.TestRatisPipelineCreateAndDestory
hadoop.ozone.container.server.TestSecureContainerServer
hadoop.ozone.web.TestOzoneWebAccess
hadoop.ozone.web.TestOzoneVolumes
hadoop.ozone.container.ozoneimpl.TestOzoneContainer
hadoop.ozone.web.TestOzoneRestWithMiniCluster
hadoop.ozone.client.rpc.TestContainerStateMachineFailures
hadoop.ozone.web.client.TestKeysRatis
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/6/artifact/out/Dockerfile
GITHUB PR #1278
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 96d0e29a6abe 4.15.0-48-generic #51-Ubuntu SMP Wed Apr 3 08:28:49 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 8aaf5e1
Default Java 1.8.0_212
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/6/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/6/testReport/
Max. process+thread count 5314 (vs. ulimit of 5500)
modules C: hadoop-ozone/ozone-manager U: hadoop-ozone/ozone-manager
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/6/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.

@lokeshj1703
Copy link
Contributor

@elek Thanks for updating the PR! The changes look good to me. There is acceptance test failure which I am not able to check.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 69 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 appears to include 1 new or modified test files.
_ trunk Compile Tests _
+1 mvninstall 636 trunk passed
+1 compile 386 trunk passed
+1 checkstyle 69 trunk passed
+1 mvnsite 0 trunk passed
+1 shadedclient 961 branch has no errors when building and testing our client artifacts.
+1 javadoc 176 trunk passed
0 spotbugs 507 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 750 trunk passed
_ Patch Compile Tests _
+1 mvninstall 639 the patch passed
+1 compile 435 the patch passed
+1 javac 435 the patch passed
+1 checkstyle 96 the patch passed
+1 mvnsite 0 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 795 patch has no errors when building and testing our client artifacts.
+1 javadoc 170 the patch passed
+1 findbugs 696 the patch passed
_ Other Tests _
+1 unit 339 hadoop-hdds in the patch passed.
-1 unit 2335 hadoop-ozone in the patch failed.
+1 asflicense 46 The patch does not generate ASF License warnings.
8758
Reason Tests
Failed junit tests hadoop.ozone.scm.node.TestQueryNode
hadoop.ozone.client.rpc.TestOzoneRpcClient
hadoop.ozone.client.rpc.TestOzoneRpcClientWithRatis
hadoop.ozone.client.rpc.Test2WayCommitInRatis
hadoop.ozone.client.rpc.TestOzoneAtRestEncryption
hadoop.ozone.client.rpc.TestSecureOzoneRpcClient
hadoop.ozone.container.server.TestSecureContainerServer
hadoop.hdds.scm.pipeline.TestRatisPipelineCreateAndDestory
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/7/artifact/out/Dockerfile
GITHUB PR #1278
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux dcfa853f84ea 4.15.0-54-generic #58-Ubuntu SMP Mon Jun 24 10:55:24 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / ee7c261
Default Java 1.8.0_222
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/7/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/7/testReport/
Max. process+thread count 5345 (vs. ulimit of 5500)
modules C: hadoop-ozone/ozone-manager U: hadoop-ozone/ozone-manager
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/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.

@bharatviswa504
Copy link
Contributor

bharatviswa504 commented Aug 23, 2019

+1 LGTM. (Need to verify test failures)

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 42 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 appears to include 1 new or modified test files.
_ trunk Compile Tests _
+1 mvninstall 600 trunk passed
+1 compile 385 trunk passed
+1 checkstyle 80 trunk passed
+1 mvnsite 0 trunk passed
+1 shadedclient 848 branch has no errors when building and testing our client artifacts.
+1 javadoc 176 trunk passed
0 spotbugs 449 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 661 trunk passed
_ Patch Compile Tests _
+1 mvninstall 564 the patch passed
+1 compile 400 the patch passed
+1 javac 400 the patch passed
+1 checkstyle 81 the patch passed
+1 mvnsite 0 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 693 patch has no errors when building and testing our client artifacts.
+1 javadoc 172 the patch passed
+1 findbugs 682 the patch passed
_ Other Tests _
+1 unit 336 hadoop-hdds in the patch passed.
-1 unit 1773 hadoop-ozone in the patch failed.
+1 asflicense 51 The patch does not generate ASF License warnings.
7693
Reason Tests
Failed junit tests hadoop.ozone.client.rpc.TestSecureOzoneRpcClient
hadoop.ozone.client.rpc.TestOzoneRpcClientWithRatis
hadoop.ozone.client.rpc.TestOzoneRpcClient
hadoop.ozone.container.common.statemachine.commandhandler.TestBlockDeletion
hadoop.ozone.client.rpc.TestOzoneAtRestEncryption
hadoop.ozone.client.rpc.TestOzoneRpcClientForAclAuditLog
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/8/artifact/out/Dockerfile
GITHUB PR #1278
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 6b3926c09351 4.15.0-58-generic #64-Ubuntu SMP Tue Aug 6 11:12:41 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 3329257
Default Java 1.8.0_222
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/8/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/8/testReport/
Max. process+thread count 5164 (vs. ulimit of 5500)
modules C: hadoop-ozone/ozone-manager U: hadoop-ozone/ozone-manager
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/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.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 45 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 appears to include 1 new or modified test files.
_ trunk Compile Tests _
+1 mvninstall 722 trunk passed
+1 compile 380 trunk passed
+1 checkstyle 85 trunk passed
+1 mvnsite 0 trunk passed
+1 shadedclient 855 branch has no errors when building and testing our client artifacts.
+1 javadoc 175 trunk passed
0 spotbugs 452 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 668 trunk passed
_ Patch Compile Tests _
+1 mvninstall 581 the patch passed
+1 compile 415 the patch passed
+1 javac 415 the patch passed
+1 checkstyle 85 the patch passed
+1 mvnsite 0 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 750 patch has no errors when building and testing our client artifacts.
+1 javadoc 178 the patch passed
+1 findbugs 707 the patch passed
_ Other Tests _
-1 unit 316 hadoop-hdds in the patch failed.
-1 unit 1975 hadoop-ozone in the patch failed.
+1 asflicense 47 The patch does not generate ASF License warnings.
8157
Reason Tests
Failed junit tests hadoop.ozone.container.common.TestEndPoint
hadoop.ozone.client.rpc.TestSecureOzoneRpcClient
hadoop.ozone.client.rpc.TestBlockOutputStream
hadoop.ozone.client.rpc.TestMultiBlockWritesWithDnFailures
hadoop.ozone.client.rpc.TestOzoneRpcClientWithRatis
hadoop.ozone.client.rpc.TestOzoneAtRestEncryption
hadoop.ozone.client.rpc.Test2WayCommitInRatis
hadoop.ozone.client.rpc.TestReadRetries
hadoop.ozone.client.rpc.TestOzoneRpcClient
hadoop.ozone.client.rpc.TestBlockOutputStreamWithFailures
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/9/artifact/out/Dockerfile
GITHUB PR #1278
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 796cc2bca37e 4.15.0-58-generic #64-Ubuntu SMP Tue Aug 6 11:12:41 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / b1eee8b
Default Java 1.8.0_222
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/9/artifact/out/patch-unit-hadoop-hdds.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/9/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/9/testReport/
Max. process+thread count 3835 (vs. ulimit of 5500)
modules C: hadoop-ozone/ozone-manager U: hadoop-ozone/ozone-manager
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/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.

@elek
Copy link
Member Author

elek commented Aug 28, 2019

/retest

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 131 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 appears to include 1 new or modified test files.
_ trunk Compile Tests _
+1 mvninstall 867 trunk passed
+1 compile 486 trunk passed
+1 checkstyle 107 trunk passed
+1 mvnsite 0 trunk passed
-1 shadedclient 1275 branch has errors when building and testing our client artifacts.
-1 javadoc 43 hadoop-hdds in trunk failed.
-1 javadoc 46 hadoop-ozone in trunk failed.
0 spotbugs 1472 Used deprecated FindBugs config; considering switching to SpotBugs.
-1 findbugs 51 hadoop-hdds in trunk failed.
-1 findbugs 46 hadoop-ozone in trunk failed.
_ Patch Compile Tests _
-1 mvninstall 50 hadoop-hdds in the patch failed.
-1 mvninstall 46 hadoop-ozone in the patch failed.
-1 compile 42 hadoop-hdds in the patch failed.
-1 compile 46 hadoop-ozone in the patch failed.
-1 javac 42 hadoop-hdds in the patch failed.
-1 javac 46 hadoop-ozone in the patch failed.
-0 checkstyle 41 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 shadedclient 70 patch has errors when building and testing our client artifacts.
-1 javadoc 39 hadoop-hdds in the patch failed.
-1 javadoc 43 hadoop-ozone in the patch failed.
-1 findbugs 43 hadoop-hdds in the patch failed.
-1 findbugs 41 hadoop-ozone in the patch failed.
_ Other Tests _
-1 unit 40 hadoop-hdds in the patch failed.
-1 unit 100 hadoop-ozone in the patch failed.
+1 asflicense 74 The patch does not generate ASF License warnings.
4024
Reason Tests
Failed junit tests hadoop.ozone.client.TestHddsClientUtils
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/Dockerfile
GITHUB PR #1278
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux df40dc7dffba 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / c7d426d
Default Java 1.8.0_212
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/branch-javadoc-hadoop-hdds.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/branch-javadoc-hadoop-ozone.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/branch-findbugs-hadoop-hdds.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/branch-findbugs-hadoop-ozone.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/patch-mvninstall-hadoop-hdds.txt
mvninstall https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/patch-mvninstall-hadoop-ozone.txt
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/patch-compile-hadoop-hdds.txt
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/patch-compile-hadoop-ozone.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/patch-compile-hadoop-hdds.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/patch-compile-hadoop-ozone.txt
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out//home/jenkins/jenkins-slave/workspace/hadoop-multibranch_PR-1278/out/maven-patch-checkstyle-hadoop-ozone.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/patch-javadoc-hadoop-hdds.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/patch-javadoc-hadoop-ozone.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/patch-findbugs-hadoop-hdds.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/patch-findbugs-hadoop-ozone.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/patch-unit-hadoop-hdds.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/artifact/out/patch-unit-hadoop-ozone.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/testReport/
Max. process+thread count 219 (vs. ulimit of 5500)
modules C: hadoop-ozone/ozone-manager U: hadoop-ozone/ozone-manager
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1278/10/console
versions git=2.7.4 maven=3.3.9
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@anuengineer
Copy link
Contributor

Test failures does not look related to this patch. I am going to commit this patch. @lokeshj1703 and @bharatviswa504 Thanks for the reviews.

@anuengineer
Copy link
Contributor

Committed to the trunk. Thanks for the contribution @elek

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