Skip to content

HDFS-8631. WebHDFS : Support setQuota #1253

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 7 commits into from
Closed

Conversation

sunchao
Copy link
Member

@sunchao sunchao commented Aug 8, 2019

No description provided.

@sunchao sunchao changed the title HDFS-8631: WebHDFS : Support setQuota HDFS-8631. WebHDFS : Support setQuota Aug 8, 2019
@sunchao sunchao added the HDFS label Aug 8, 2019
*/
public void setQuota(Path src, final long namespaceQuota,
final long storagespaceQuota) throws IOException {
throw new UnsupportedOperationException(getClass().getCanonicalName() +
Copy link
Member

Choose a reason for hiding this comment

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

This is a pattern used in many places.
I think we should have a static method to do this.
I think the easiest way to get the function name is to get the stack trace.

Copy link
Member Author

Choose a reason for hiding this comment

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

Agree. Better to have a static method and make the error message standardized. Not sure what you mean by getting the function name from the stack trace though. I was thinking to just pass the method name to the static helper method.

Do you want to do this cleanup in this JIRA, or address it separately in a follow-up?

Copy link
Member

Choose a reason for hiding this comment

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

Let's do just the new two functions in this JIRA so we introduce the function.
Afterwards we can do a separate JIRA to replace all.
To get the method, one could do Thread.currentThread().getStackTrace()[index].getMethodName().
The index sometimes is tricky, but doable.

/** Parameter name. */
public static final String NAME = "namespacequota";
/** Default parameter value ({@link Long#MAX_VALUE}). */
// public static final String DEFAULT = String.valueOf(Long.MAX_VALUE);
Copy link
Member

Choose a reason for hiding this comment

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

Cleanup?

Copy link
Member Author

Choose a reason for hiding this comment

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

Oops my bad.

assertEquals(Long.valueOf(StorageSpaceQuotaParam.DEFAULT),
sp.getValue());
sp = new StorageSpaceQuotaParam(100L);
assertEquals(new Long(100), sp.getValue());
Copy link
Member

Choose a reason for hiding this comment

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

Can we use "assertEquals(100L,"?

Copy link
Member Author

Choose a reason for hiding this comment

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

Done.

webHdfs.setQuota(path, -100, 100);
fail("Should have thrown exception");
} catch (IllegalArgumentException e) {
assertTrue(e.getMessage().contains("Invalid values for quota"));
Copy link
Member

Choose a reason for hiding this comment

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

I would use LambdaTestUtils.intercept for all this.

Copy link
Member Author

Choose a reason for hiding this comment

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

Thanks. I was searching for this but forgot what it is called. Will replace.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 81 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 2 new or modified test files.
_ trunk Compile Tests _
0 mvndep 35 Maven dependency ordering for branch
+1 mvninstall 1226 trunk passed
+1 compile 1032 trunk passed
+1 checkstyle 147 trunk passed
+1 mvnsite 245 trunk passed
+1 shadedclient 1154 branch has no errors when building and testing our client artifacts.
+1 javadoc 184 trunk passed
0 spotbugs 47 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 485 trunk passed
_ Patch Compile Tests _
0 mvndep 24 Maven dependency ordering for patch
+1 mvninstall 181 the patch passed
-1 compile 263 root in the patch failed.
-1 javac 263 root in the patch failed.
-0 checkstyle 143 root: The patch generated 7 new + 399 unchanged - 0 fixed = 406 total (was 399)
+1 mvnsite 201 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 756 patch has no errors when building and testing our client artifacts.
+1 javadoc 152 the patch passed
+1 findbugs 485 the patch passed
_ Other Tests _
-1 unit 524 hadoop-common in the patch failed.
+1 unit 117 hadoop-hdfs-client in the patch passed.
-1 unit 8623 hadoop-hdfs in the patch failed.
+1 unit 278 hadoop-hdfs-httpfs in the patch passed.
+1 asflicense 45 The patch does not generate ASF License warnings.
16255
Reason Tests
Failed junit tests hadoop.fs.TestHarFileSystem
hadoop.fs.TestFilterFileSystem
hadoop.hdfs.server.datanode.TestDataNodeHotSwapVolumes
hadoop.hdfs.server.datanode.TestBPOfferService
hadoop.hdfs.TestReadStripedFileWithMissingBlocks
hadoop.hdfs.server.datanode.TestDataNodeUUID
hadoop.hdfs.server.datanode.TestLargeBlockReport
hadoop.hdfs.security.TestDelegationTokenForProxyUser
hadoop.hdfs.server.balancer.TestBalancer
hadoop.hdfs.server.datanode.TestDirectoryScanner
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/1/artifact/out/Dockerfile
GITHUB PR #1253
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux c47d22a231cf 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 / 3b38f20
Default Java 1.8.0_212
compile https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/1/artifact/out/patch-compile-root.txt
javac https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/1/artifact/out/patch-compile-root.txt
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/1/artifact/out/diff-checkstyle-root.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/1/artifact/out/patch-unit-hadoop-common-project_hadoop-common.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/1/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/1/testReport/
Max. process+thread count 2686 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common hadoop-hdfs-project/hadoop-hdfs-client hadoop-hdfs-project/hadoop-hdfs hadoop-hdfs-project/hadoop-hdfs-httpfs U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/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.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 523 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 4 new or modified test files.
_ trunk Compile Tests _
0 mvndep 77 Maven dependency ordering for branch
+1 mvninstall 1053 trunk passed
+1 compile 1056 trunk passed
+1 checkstyle 153 trunk passed
+1 mvnsite 306 trunk passed
+1 shadedclient 1203 branch has no errors when building and testing our client artifacts.
+1 javadoc 224 trunk passed
0 spotbugs 65 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 517 trunk passed
_ Patch Compile Tests _
0 mvndep 20 Maven dependency ordering for patch
+1 mvninstall 186 the patch passed
+1 compile 980 the patch passed
+1 javac 980 the patch passed
-0 checkstyle 136 root: The patch generated 11 new + 604 unchanged - 0 fixed = 615 total (was 604)
+1 mvnsite 249 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 617 patch has no errors when building and testing our client artifacts.
+1 javadoc 293 the patch passed
+1 findbugs 551 the patch passed
_ Other Tests _
+1 unit 507 hadoop-common in the patch passed.
+1 unit 114 hadoop-hdfs-client in the patch passed.
-1 unit 4800 hadoop-hdfs in the patch failed.
+1 unit 276 hadoop-hdfs-httpfs in the patch passed.
-1 unit 1332 hadoop-hdfs-rbf in the patch failed.
+1 asflicense 45 The patch does not generate ASF License warnings.
15050
Reason Tests
Failed junit tests hadoop.hdfs.TestDFSStripedOutputStreamWithFailure
hadoop.hdfs.server.namenode.ha.TestBootstrapAliasmap
hadoop.hdfs.server.blockmanagement.TestBlockTokenWithDFSStriped
hadoop.hdfs.TestErasureCodingPolicyWithSnapshotWithRandomECPolicy
hadoop.hdfs.server.datanode.TestLargeBlockReport
hadoop.hdfs.server.federation.security.TestRouterHttpDelegationToken
hadoop.hdfs.server.federation.router.TestRouterWithSecureStartup
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/3/artifact/out/Dockerfile
GITHUB PR #1253
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 7c352262ee27 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 88ed1e0
Default Java 1.8.0_222
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/3/artifact/out/diff-checkstyle-root.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/3/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/3/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/3/testReport/
Max. process+thread count 5098 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common hadoop-hdfs-project/hadoop-hdfs-client hadoop-hdfs-project/hadoop-hdfs hadoop-hdfs-project/hadoop-hdfs-httpfs hadoop-hdfs-project/hadoop-hdfs-rbf U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/3/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 44 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 2 new or modified test files.
_ trunk Compile Tests _
0 mvndep 77 Maven dependency ordering for branch
+1 mvninstall 1113 trunk passed
+1 compile 1112 trunk passed
+1 checkstyle 138 trunk passed
+1 mvnsite 259 trunk passed
+1 shadedclient 1086 branch has no errors when building and testing our client artifacts.
+1 javadoc 232 trunk passed
0 spotbugs 69 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 527 trunk passed
_ Patch Compile Tests _
0 mvndep 23 Maven dependency ordering for patch
+1 mvninstall 195 the patch passed
+1 compile 1092 the patch passed
+1 javac 1092 the patch passed
-0 checkstyle 154 root: The patch generated 7 new + 414 unchanged - 0 fixed = 421 total (was 414)
+1 mvnsite 312 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 792 patch has no errors when building and testing our client artifacts.
+1 javadoc 232 the patch passed
+1 findbugs 627 the patch passed
_ Other Tests _
-1 unit 564 hadoop-common in the patch failed.
+1 unit 123 hadoop-hdfs-client in the patch passed.
-1 unit 5632 hadoop-hdfs in the patch failed.
+1 unit 288 hadoop-hdfs-httpfs in the patch passed.
-1 unit 1409 hadoop-hdfs-rbf in the patch failed.
+1 asflicense 62 The patch does not generate ASF License warnings.
16005
Reason Tests
Failed junit tests hadoop.fs.TestFilterFileSystem
hadoop.fs.TestHarFileSystem
hadoop.hdfs.server.datanode.TestLargeBlockReport
hadoop.hdfs.server.namenode.TestNamenodeStorageDirectives
hadoop.hdfs.TestSetrepDecreasing
hadoop.hdfs.server.namenode.TestNamenodeRetryCache
hadoop.hdfs.TestEncryptedTransfer
hadoop.hdfs.TestDFSStripedOutputStreamWithRandomECPolicy
hadoop.hdfs.server.datanode.TestDirectoryScanner
hadoop.hdfs.server.balancer.TestBalancerRPCDelay
hadoop.hdfs.server.namenode.TestStartup
hadoop.hdfs.TestSafeMode
hadoop.hdfs.server.datanode.TestBlockScanner
hadoop.hdfs.server.namenode.TestNamenodeCapacityReport
hadoop.hdfs.server.federation.router.TestRouterWithSecureStartup
hadoop.hdfs.server.federation.security.TestRouterHttpDelegationToken
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/2/artifact/out/Dockerfile
GITHUB PR #1253
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux b18397b6830e 4.4.0-157-generic #185-Ubuntu SMP Tue Jul 23 09:17:01 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 88ed1e0
Default Java 1.8.0_212
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/2/artifact/out/diff-checkstyle-root.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/2/artifact/out/patch-unit-hadoop-common-project_hadoop-common.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/2/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/2/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/2/testReport/
Max. process+thread count 3955 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common hadoop-hdfs-project/hadoop-hdfs-client hadoop-hdfs-project/hadoop-hdfs hadoop-hdfs-project/hadoop-hdfs-httpfs hadoop-hdfs-project/hadoop-hdfs-rbf U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/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
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 4 new or modified test files.
_ trunk Compile Tests _
0 mvndep 74 Maven dependency ordering for branch
+1 mvninstall 1055 trunk passed
+1 compile 1060 trunk passed
+1 checkstyle 153 trunk passed
+1 mvnsite 301 trunk passed
+1 shadedclient 1187 branch has no errors when building and testing our client artifacts.
+1 javadoc 226 trunk passed
0 spotbugs 71 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 521 trunk passed
_ Patch Compile Tests _
0 mvndep 20 Maven dependency ordering for patch
+1 mvninstall 187 the patch passed
+1 compile 1030 the patch passed
+1 javac 1030 the patch passed
-0 checkstyle 139 root: The patch generated 11 new + 605 unchanged - 0 fixed = 616 total (was 605)
+1 mvnsite 261 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 640 patch has no errors when building and testing our client artifacts.
+1 javadoc 285 the patch passed
+1 findbugs 635 the patch passed
_ Other Tests _
+1 unit 548 hadoop-common in the patch passed.
+1 unit 116 hadoop-hdfs-client in the patch passed.
-1 unit 6419 hadoop-hdfs in the patch failed.
+1 unit 305 hadoop-hdfs-httpfs in the patch passed.
-1 unit 1360 hadoop-hdfs-rbf in the patch failed.
+1 asflicense 49 The patch does not generate ASF License warnings.
16456
Reason Tests
Failed junit tests hadoop.hdfs.server.datanode.TestLargeBlockReport
hadoop.hdfs.server.namenode.TestNamenodeCapacityReport
hadoop.hdfs.TestReconstructStripedFile
hadoop.hdfs.server.datanode.TestBatchIbr
hadoop.hdfs.TestDecommissionWithStriped
hadoop.hdfs.server.datanode.TestBlockScanner
hadoop.hdfs.TestErasureCodeBenchmarkThroughput
hadoop.hdfs.server.namenode.TestFSImage
hadoop.hdfs.TestErasureCodingPolicies
hadoop.hdfs.TestErasureCodingPoliciesWithRandomECPolicy
hadoop.hdfs.TestErasureCodingExerciseAPIs
hadoop.hdfs.server.namenode.ha.TestHAStateTransitions
hadoop.hdfs.TestReconstructStripedFileWithRandomECPolicy
hadoop.hdfs.server.namenode.ha.TestBootstrapAliasmap
hadoop.hdfs.tools.TestDFSAdminWithHA
hadoop.hdfs.TestDatanodeRegistration
hadoop.hdfs.TestRestartDFS
hadoop.hdfs.TestErasureCodingPolicyWithSnapshot
hadoop.hdfs.server.namenode.TestAddOverReplicatedStripedBlocks
hadoop.hdfs.TestModTime
hadoop.hdfs.server.datanode.TestDataNodeVolumeFailureToleration
hadoop.hdfs.TestDFSStripedOutputStream
hadoop.hdfs.server.datanode.fsdataset.impl.TestDatanodeRestart
hadoop.hdfs.server.datanode.TestDirectoryScanner
hadoop.hdfs.server.blockmanagement.TestUnderReplicatedBlocks
hadoop.hdfs.tools.offlineImageViewer.TestOfflineImageViewerWithStripedBlocks
hadoop.hdfs.server.federation.router.TestRouterWithSecureStartup
hadoop.hdfs.server.federation.router.TestRouterFaultTolerant
hadoop.hdfs.server.federation.security.TestRouterHttpDelegationToken
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/4/artifact/out/Dockerfile
GITHUB PR #1253
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 6f651de7cb92 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 / 88ed1e0
Default Java 1.8.0_222
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/4/artifact/out/diff-checkstyle-root.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/4/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/4/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/4/testReport/
Max. process+thread count 3954 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common hadoop-hdfs-project/hadoop-hdfs-client hadoop-hdfs-project/hadoop-hdfs hadoop-hdfs-project/hadoop-hdfs-httpfs hadoop-hdfs-project/hadoop-hdfs-rbf U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/4/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.

@sunchao
Copy link
Member Author

sunchao commented Aug 9, 2019

Hmm. Seems something wrong with Yetus? most of the tests failed with:

java.lang.OutOfMemoryError: unable to create new native thread

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 0 Docker mode activated.
-1 patch 12 HDFS-8631 does not apply to trunk. Rebase required? Wrong Branch? See https://wiki.apache.org/hadoop/HowToContribute for help.
Subsystem Report/Notes
JIRA Issue HDFS-8631
JIRA Patch URL https://issues.apache.org/jira/secure/attachment/12860576/HDFS-8631-006.patch
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/6/console
versions git=2.7.4
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@@ -49,7 +51,7 @@
@Test
public void testAccessTimeParam() {
final AccessTimeParam p = new AccessTimeParam(AccessTimeParam.DEFAULT);
Assert.assertEquals(-1L, p.getValue().longValue());
assertEquals(-1L, p.getValue().longValue());
Copy link
Member

Choose a reason for hiding this comment

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

To avoid so much churn, let's just do the assertEquals in the new methods and leave this alone for the rest for now.
we can do a followup JIRA for that if so.

Copy link
Member Author

Choose a reason for hiding this comment

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

Sure. Will revert the unrelated changes in this class.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 48 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 4 new or modified test files.
_ trunk Compile Tests _
0 mvndep 24 Maven dependency ordering for branch
+1 mvninstall 1068 trunk passed
+1 compile 1033 trunk passed
+1 checkstyle 161 trunk passed
+1 mvnsite 306 trunk passed
+1 shadedclient 1205 branch has no errors when building and testing our client artifacts.
+1 javadoc 272 trunk passed
0 spotbugs 77 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 549 trunk passed
_ Patch Compile Tests _
0 mvndep 24 Maven dependency ordering for patch
+1 mvninstall 208 the patch passed
+1 compile 992 the patch passed
+1 javac 992 the patch passed
-0 checkstyle 156 root: The patch generated 11 new + 604 unchanged - 0 fixed = 615 total (was 604)
+1 mvnsite 309 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 689 patch has no errors when building and testing our client artifacts.
+1 javadoc 274 the patch passed
+1 findbugs 588 the patch passed
_ Other Tests _
+1 unit 498 hadoop-common in the patch passed.
+1 unit 131 hadoop-hdfs-client in the patch passed.
-1 unit 4722 hadoop-hdfs in the patch failed.
+1 unit 314 hadoop-hdfs-httpfs in the patch passed.
-1 unit 1427 hadoop-hdfs-rbf in the patch failed.
+1 asflicense 64 The patch does not generate ASF License warnings.
14929
Reason Tests
Failed junit tests hadoop.hdfs.server.datanode.TestLargeBlockReport
hadoop.hdfs.server.federation.router.TestRouterWithSecureStartup
hadoop.hdfs.server.federation.security.TestRouterHttpDelegationToken
hadoop.hdfs.server.federation.router.TestRouterFaultTolerant
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/5/artifact/out/Dockerfile
GITHUB PR #1253
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux e664c5c19594 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 / a79564f
Default Java 1.8.0_212
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/5/artifact/out/diff-checkstyle-root.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/5/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/5/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/5/testReport/
Max. process+thread count 4229 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common hadoop-hdfs-project/hadoop-hdfs-client hadoop-hdfs-project/hadoop-hdfs hadoop-hdfs-project/hadoop-hdfs-httpfs hadoop-hdfs-project/hadoop-hdfs-rbf U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/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 48 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 4 new or modified test files.
_ trunk Compile Tests _
0 mvndep 60 Maven dependency ordering for branch
+1 mvninstall 1102 trunk passed
+1 compile 1118 trunk passed
+1 checkstyle 159 trunk passed
+1 mvnsite 314 trunk passed
+1 shadedclient 1199 branch has no errors when building and testing our client artifacts.
+1 javadoc 210 trunk passed
0 spotbugs 79 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 539 trunk passed
_ Patch Compile Tests _
0 mvndep 23 Maven dependency ordering for patch
+1 mvninstall 202 the patch passed
+1 compile 1046 the patch passed
+1 javac 1046 the patch passed
-0 checkstyle 137 root: The patch generated 11 new + 604 unchanged - 0 fixed = 615 total (was 604)
+1 mvnsite 263 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 635 patch has no errors when building and testing our client artifacts.
+1 javadoc 226 the patch passed
+1 findbugs 577 the patch passed
_ Other Tests _
-1 unit 521 hadoop-common in the patch failed.
+1 unit 121 hadoop-hdfs-client in the patch passed.
-1 unit 6420 hadoop-hdfs in the patch failed.
+1 unit 332 hadoop-hdfs-httpfs in the patch passed.
-1 unit 1442 hadoop-hdfs-rbf in the patch failed.
+1 asflicense 66 The patch does not generate ASF License warnings.
16588
Reason Tests
Failed junit tests hadoop.util.TestReadWriteDiskValidator
hadoop.fs.TestFilterFileSystem
hadoop.fs.TestHarFileSystem
hadoop.hdfs.TestDFSStorageStateRecovery
hadoop.hdfs.TestErasureCodingPolicies
hadoop.hdfs.TestDFSStartupVersions
hadoop.fs.viewfs.TestViewFileSystemHdfs
hadoop.hdfs.TestUnsetAndChangeDirectoryEcPolicy
hadoop.hdfs.TestReconstructStripedFileWithRandomECPolicy
hadoop.hdfs.TestMaintenanceState
hadoop.hdfs.TestDFSStripedInputStreamWithRandomECPolicy
hadoop.hdfs.TestSafeModeWithStripedFileWithRandomECPolicy
hadoop.fs.TestSymlinkHdfsFileSystem
hadoop.hdfs.TestFileChecksumCompositeCrc
hadoop.hdfs.server.blockmanagement.TestUnderReplicatedBlocks
hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots
hadoop.hdfs.server.sps.TestExternalStoragePolicySatisfier
hadoop.hdfs.TestFileChecksum
hadoop.hdfs.server.federation.router.TestRouterWithSecureStartup
hadoop.hdfs.server.federation.security.TestRouterHttpDelegationToken
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/7/artifact/out/Dockerfile
GITHUB PR #1253
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux d1f25fc6ac93 4.4.0-157-generic #185-Ubuntu SMP Tue Jul 23 09:17:01 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 2ac029b
Default Java 1.8.0_212
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/7/artifact/out/diff-checkstyle-root.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/7/artifact/out/patch-unit-hadoop-common-project_hadoop-common.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/7/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/7/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/7/testReport/
Max. process+thread count 3302 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common hadoop-hdfs-project/hadoop-hdfs-client hadoop-hdfs-project/hadoop-hdfs hadoop-hdfs-project/hadoop-hdfs-httpfs hadoop-hdfs-project/hadoop-hdfs-rbf U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/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 0 Docker mode activated.
-1 patch 15 HDFS-8631 does not apply to trunk. Rebase required? Wrong Branch? See https://wiki.apache.org/hadoop/HowToContribute for help.
Subsystem Report/Notes
JIRA Issue HDFS-8631
JIRA Patch URL https://issues.apache.org/jira/secure/attachment/12860576/HDFS-8631-006.patch
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/8/console
versions git=2.7.4
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 120 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 4 new or modified test files.
_ trunk Compile Tests _
0 mvndep 25 Maven dependency ordering for branch
+1 mvninstall 1190 trunk passed
+1 compile 1149 trunk passed
+1 checkstyle 152 trunk passed
+1 mvnsite 270 trunk passed
+1 shadedclient 1264 branch has no errors when building and testing our client artifacts.
+1 javadoc 244 trunk passed
0 spotbugs 87 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 608 trunk passed
_ Patch Compile Tests _
0 mvndep 25 Maven dependency ordering for patch
+1 mvninstall 229 the patch passed
+1 compile 1019 the patch passed
+1 javac 1019 the patch passed
-0 checkstyle 172 root: The patch generated 12 new + 604 unchanged - 0 fixed = 616 total (was 604)
+1 mvnsite 290 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 758 patch has no errors when building and testing our client artifacts.
+1 javadoc 284 the patch passed
+1 findbugs 755 the patch passed
_ Other Tests _
-1 unit 606 hadoop-common in the patch failed.
+1 unit 140 hadoop-hdfs-client in the patch passed.
-1 unit 7073 hadoop-hdfs in the patch failed.
-1 unit 36 hadoop-hdfs-httpfs in the patch failed.
-1 unit 41 hadoop-hdfs-rbf in the patch failed.
-1 asflicense 55 The patch generated 1 ASF License warnings.
16394
Reason Tests
Failed junit tests hadoop.fs.TestHarFileSystem
hadoop.fs.TestFilterFileSystem
hadoop.hdfs.server.balancer.TestBalancerWithMultipleNameNodes
hadoop.hdfs.server.namenode.TestXAttrConfigFlag
hadoop.hdfs.server.namenode.TestFsck
hadoop.hdfs.server.namenode.TestAuditLogger
hadoop.hdfs.server.namenode.snapshot.TestDisallowModifyROSnapshot
hadoop.hdfs.server.namenode.TestAuditLogs
hadoop.hdfs.server.namenode.web.resources.TestWebHdfsCreatePermissions
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/10/artifact/out/Dockerfile
GITHUB PR #1253
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 34c7977d032c 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 / 9b8359b
Default Java 1.8.0_212
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/10/artifact/out/diff-checkstyle-root.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/10/artifact/out/patch-unit-hadoop-common-project_hadoop-common.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/10/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/10/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-httpfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/10/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/10/testReport/
asflicense https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/10/artifact/out/patch-asflicense-problems.txt
Max. process+thread count 2902 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common hadoop-hdfs-project/hadoop-hdfs-client hadoop-hdfs-project/hadoop-hdfs hadoop-hdfs-project/hadoop-hdfs-httpfs hadoop-hdfs-project/hadoop-hdfs-rbf U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/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.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 138 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 4 new or modified test files.
_ trunk Compile Tests _
0 mvndep 82 Maven dependency ordering for branch
+1 mvninstall 1490 trunk passed
+1 compile 1433 trunk passed
+1 checkstyle 194 trunk passed
+1 mvnsite 378 trunk passed
+1 shadedclient 1481 branch has no errors when building and testing our client artifacts.
+1 javadoc 307 trunk passed
0 spotbugs 91 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 701 trunk passed
_ Patch Compile Tests _
0 mvndep 24 Maven dependency ordering for patch
+1 mvninstall 224 the patch passed
+1 compile 1311 the patch passed
+1 javac 1311 the patch passed
-0 checkstyle 214 root: The patch generated 12 new + 604 unchanged - 0 fixed = 616 total (was 604)
+1 mvnsite 375 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 841 patch has no errors when building and testing our client artifacts.
+1 javadoc 262 the patch passed
+1 findbugs 679 the patch passed
_ Other Tests _
-1 unit 611 hadoop-common in the patch failed.
+1 unit 139 hadoop-hdfs-client in the patch passed.
-1 unit 6610 hadoop-hdfs in the patch failed.
-1 unit 31 hadoop-hdfs-httpfs in the patch failed.
-1 unit 37 hadoop-hdfs-rbf in the patch failed.
-1 asflicense 51 The patch generated 5 ASF License warnings.
17392
Reason Tests
Failed junit tests hadoop.fs.TestHarFileSystem
hadoop.fs.TestFilterFileSystem
hadoop.security.TestRaceWhenRelogin
hadoop.hdfs.web.resources.TestParam
hadoop.hdfs.server.namenode.TestNameNodeMetadataConsistency
hadoop.hdfs.web.TestWebHdfsTokens
hadoop.hdfs.security.TestDelegationTokenForProxyUser
hadoop.hdfs.web.TestWebHDFSXAttr
hadoop.fs.TestSWebHdfsFileContextMainOperations
hadoop.hdfs.web.TestWebHdfsFileSystemContract
hadoop.hdfs.web.TestWebHDFSForHA
hadoop.hdfs.security.TestDelegationToken
hadoop.hdfs.TestDistributedFileSystem
hadoop.hdfs.TestReadStripedFileWithDecodingDeletedData
hadoop.hdfs.server.namenode.TestAuditLogs
hadoop.hdfs.web.TestWebHdfsWithRestCsrfPreventionFilter
hadoop.hdfs.server.namenode.TestEditLog
hadoop.fs.TestSymlinkHdfsFileSystem
hadoop.hdfs.web.TestFSMainOperationsWebHdfs
hadoop.hdfs.web.TestWebHDFS
hadoop.hdfs.TestQuota
hadoop.fs.TestSymlinkHdfsFileContext
hadoop.hdfs.web.TestWebHdfsWithMultipleNameNodes
hadoop.hdfs.tools.TestViewFSStoragePolicyCommands
hadoop.hdfs.server.namenode.TestQuotaWithStripedBlocks
hadoop.hdfs.server.namenode.TestLargeDirectoryDelete
hadoop.hdfs.web.TestWebHdfsWithAuthenticationFilter
hadoop.hdfs.web.TestWebHDFSAcl
hadoop.hdfs.web.TestHttpsFileSystem
hadoop.fs.TestWebHdfsFileContextMainOperations
hadoop.hdfs.TestEncryptionZones
hadoop.hdfs.server.namenode.TestFsck
hadoop.hdfs.server.namenode.TestAuditLoggerWithCommands
hadoop.hdfs.tools.TestWebHDFSStoragePolicyCommands
hadoop.hdfs.server.sps.TestExternalStoragePolicySatisfier
hadoop.hdfs.web.TestWebHdfsUrl
hadoop.hdfs.server.namenode.TestNameNodeAcl
hadoop.hdfs.TestWriteReadStripedFile
Subsystem Report/Notes
Docker Client=18.09.7 Server=18.09.7 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/11/artifact/out/Dockerfile
GITHUB PR #1253
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 2e9178480ade 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 / 6244502
Default Java 1.8.0_222
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/11/artifact/out/diff-checkstyle-root.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/11/artifact/out/patch-unit-hadoop-common-project_hadoop-common.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/11/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/11/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-httpfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/11/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/11/testReport/
asflicense https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/11/artifact/out/patch-asflicense-problems.txt
Max. process+thread count 2756 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common hadoop-hdfs-project/hadoop-hdfs-client hadoop-hdfs-project/hadoop-hdfs hadoop-hdfs-project/hadoop-hdfs-httpfs hadoop-hdfs-project/hadoop-hdfs-rbf U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/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.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 36 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 4 new or modified test files.
_ trunk Compile Tests _
0 mvndep 24 Maven dependency ordering for branch
+1 mvninstall 1238 trunk passed
+1 compile 1087 trunk passed
+1 checkstyle 153 trunk passed
+1 mvnsite 278 trunk passed
+1 shadedclient 1215 branch has no errors when building and testing our client artifacts.
+1 javadoc 219 trunk passed
0 spotbugs 87 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 605 trunk passed
_ Patch Compile Tests _
0 mvndep 26 Maven dependency ordering for patch
+1 mvninstall 243 the patch passed
+1 compile 1063 the patch passed
+1 javac 1063 the patch passed
-0 checkstyle 165 root: The patch generated 12 new + 604 unchanged - 0 fixed = 616 total (was 604)
+1 mvnsite 274 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 762 patch has no errors when building and testing our client artifacts.
+1 javadoc 226 the patch passed
-1 findbugs 37 hadoop-hdfs-rbf in the patch failed.
_ Other Tests _
-1 unit 615 hadoop-common in the patch failed.
-1 unit 55 hadoop-hdfs-client in the patch failed.
-1 unit 5744 hadoop-hdfs in the patch failed.
-1 unit 36 hadoop-hdfs-httpfs in the patch failed.
-1 unit 40 hadoop-hdfs-rbf in the patch failed.
+1 asflicense 57 The patch does not generate ASF License warnings.
14580
Reason Tests
Failed junit tests hadoop.fs.TestHarFileSystem
hadoop.fs.viewfs.TestViewFsTrash
hadoop.fs.TestFilterFileSystem
hadoop.hdfs.server.blockmanagement.TestUnderReplicatedBlocks
hadoop.cli.TestCacheAdminCLI
hadoop.hdfs.TestDFSClientRetries
hadoop.hdfs.TestReconstructStripedFile
hadoop.cli.TestHDFSCLI
hadoop.hdfs.server.namenode.TestDecommissioningStatus
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/12/artifact/out/Dockerfile
GITHUB PR #1253
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 9110770c52ff 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
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/12/artifact/out/diff-checkstyle-root.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/12/artifact/out/patch-findbugs-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/12/artifact/out/patch-unit-hadoop-common-project_hadoop-common.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/12/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-client.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/12/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/12/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-httpfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/12/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/12/testReport/
Max. process+thread count 3099 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common hadoop-hdfs-project/hadoop-hdfs-client hadoop-hdfs-project/hadoop-hdfs hadoop-hdfs-project/hadoop-hdfs-httpfs hadoop-hdfs-project/hadoop-hdfs-rbf U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/12/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 49 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 4 new or modified test files.
_ trunk Compile Tests _
0 mvndep 482 Maven dependency ordering for branch
+1 mvninstall 1304 trunk passed
+1 compile 1070 trunk passed
+1 checkstyle 165 trunk passed
+1 mvnsite 311 trunk passed
+1 shadedclient 1201 branch has no errors when building and testing our client artifacts.
+1 javadoc 263 trunk passed
0 spotbugs 78 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 566 trunk passed
_ Patch Compile Tests _
0 mvndep 24 Maven dependency ordering for patch
+1 mvninstall 210 the patch passed
+1 compile 1009 the patch passed
+1 javac 1009 the patch passed
-0 checkstyle 151 root: The patch generated 12 new + 605 unchanged - 0 fixed = 617 total (was 605)
-1 mvnsite 47 hadoop-hdfs-client in the patch failed.
-1 mvnsite 51 hadoop-hdfs in the patch failed.
-1 mvnsite 35 hadoop-hdfs-httpfs in the patch failed.
-1 mvnsite 38 hadoop-hdfs-rbf in the patch failed.
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 718 patch has no errors when building and testing our client artifacts.
-1 javadoc 70 hadoop-hdfs-project_hadoop-hdfs generated 21 new + 0 unchanged - 0 fixed = 21 total (was 0)
-1 javadoc 50 hadoop-hdfs-project_hadoop-hdfs-rbf generated 6 new + 0 unchanged - 0 fixed = 6 total (was 0)
-1 findbugs 47 hadoop-hdfs-client in the patch failed.
-1 findbugs 50 hadoop-hdfs in the patch failed.
-1 findbugs 30 hadoop-hdfs-httpfs in the patch failed.
-1 findbugs 34 hadoop-hdfs-rbf in the patch failed.
_ Other Tests _
-1 unit 538 hadoop-common in the patch failed.
-1 unit 54 hadoop-hdfs-client in the patch failed.
-1 unit 53 hadoop-hdfs in the patch failed.
-1 unit 32 hadoop-hdfs-httpfs in the patch failed.
-1 unit 34 hadoop-hdfs-rbf in the patch failed.
+1 asflicense 48 The patch does not generate ASF License warnings.
8914
Reason Tests
Failed junit tests hadoop.fs.TestHarFileSystem
hadoop.fs.TestFilterFileSystem
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/Dockerfile
GITHUB PR #1253
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle
uname Linux 3b16776fa49a 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
checkstyle https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/diff-checkstyle-root.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-mvnsite-hadoop-hdfs-project_hadoop-hdfs-client.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-mvnsite-hadoop-hdfs-project_hadoop-hdfs.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-mvnsite-hadoop-hdfs-project_hadoop-hdfs-httpfs.txt
mvnsite https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-mvnsite-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/diff-javadoc-javadoc-hadoop-hdfs-project_hadoop-hdfs.txt
javadoc https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/diff-javadoc-javadoc-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-findbugs-hadoop-hdfs-project_hadoop-hdfs-client.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-findbugs-hadoop-hdfs-project_hadoop-hdfs.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-findbugs-hadoop-hdfs-project_hadoop-hdfs-httpfs.txt
findbugs https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-findbugs-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-unit-hadoop-common-project_hadoop-common.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-client.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-httpfs.txt
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/artifact/out/patch-unit-hadoop-hdfs-project_hadoop-hdfs-rbf.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/testReport/
Max. process+thread count 1392 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common hadoop-hdfs-project/hadoop-hdfs-client hadoop-hdfs-project/hadoop-hdfs hadoop-hdfs-project/hadoop-hdfs-httpfs hadoop-hdfs-project/hadoop-hdfs-rbf U: .
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-1253/13/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.

@sunchao sunchao closed this Sep 3, 2019
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.

3 participants