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

HBASE-22580 Add a table attribute to make user scan snapshot feature configurable for table #336

Merged
merged 1 commit into from
Jul 29, 2019

Conversation

mymeiyi
Copy link
Contributor

@mymeiyi mymeiyi commented Jun 25, 2019

No description provided.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 24 Docker mode activated.
_ Prechecks _
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
0 mvndep 26 Maven dependency ordering for branch
+1 mvninstall 244 master passed
+1 compile 75 master passed
+1 checkstyle 97 master passed
+1 shadedjars 257 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 265 master passed
+1 javadoc 55 master passed
_ Patch Compile Tests _
0 mvndep 15 Maven dependency ordering for patch
+1 mvninstall 245 the patch passed
+1 compile 76 the patch passed
+1 javac 76 the patch passed
-1 checkstyle 66 hbase-server: The patch generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 268 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 743 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 276 the patch passed
+1 javadoc 56 the patch passed
_ Other Tests _
+1 unit 101 hbase-client in the patch passed.
+1 unit 8772 hbase-server in the patch passed.
+1 asflicense 60 The patch does not generate ASF License warnings.
12063
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/1/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 2d0c46c496ed 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / 15ac781
maven version: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java 1.8.0_181
findbugs v3.1.11
checkstyle https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/1/artifact/out/diff-checkstyle-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/1/testReport/
Max. process+thread count 4829 (vs. ulimit of 10000)
modules C: hbase-client hbase-server U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/1/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

* SnapshotScannerHDFSAclController won't handle HDFS acls for users with table read permission
* @return true if user scan snapshot is enabled for this table
*/
boolean isUserScanSnapshotEnabled();
Copy link
Member

Choose a reason for hiding this comment

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

The TableDescriptor is @InterfaceAudience.Public interfaces, right ? and the snapshot acl is a optional coproccesor ...
I think we can not add an extra specific method in the PUBLIC interface, once someone use this method, then devs can not remove or change this easily, we MUST deprecated it in a old major release, then remove it in another new major release. It is troublesome.

@mymeiyi mymeiyi force-pushed the hdfs-acl-table-attribute branch from fec069d to 5160c62 Compare June 25, 2019 09:49
}

boolean isTableUserScanSnapshotEnabled(TableDescriptor tableDescriptor) {
return tableDescriptor.getCoprocessorDescriptors().stream()
Copy link
Member

Choose a reason for hiding this comment

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

Just use the TableDescriptor#hasCoprocessor ?

if (checkTable(currentDescriptor, () -> "modifyTable " + tableName)
&& !hdfsAclHelper.isTableUserScanSnapshotEnabled(oldDescriptor)) {
hdfsAclHelper.createTableDirectories(tableName);
Set<String> users = new HashSet<>();
Copy link
Member

Choose a reason for hiding this comment

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

Abstract an small method here ? I saw many places has the logic: to pick up all the users who has the read permission on table / ns / global etc...

hdfsAclHelper.getUsersWithTableReadAction(tableName);
users.addAll(userWithTableReadPermission);
hdfsAclHelper.addTableAcl(tableName, users);
try (Table aclTable =
Copy link
Member

Choose a reason for hiding this comment

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

Also can abstract a method for the flag updating

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 85 Docker mode activated.
_ Prechecks _
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 323 master passed
+1 compile 54 master passed
+1 checkstyle 72 master passed
+1 shadedjars 275 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 215 master passed
+1 javadoc 33 master passed
_ Patch Compile Tests _
+1 mvninstall 256 the patch passed
+1 compile 53 the patch passed
+1 javac 53 the patch passed
+1 checkstyle 68 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 273 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 797 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 223 the patch passed
+1 javadoc 35 the patch passed
_ Other Tests _
-1 unit 19432 hbase-server in the patch failed.
+1 asflicense 30 The patch does not generate ASF License warnings.
22560
Reason Tests
Failed junit tests hadoop.hbase.master.procedure.TestSCPWithReplicas
hadoop.hbase.client.TestFromClientSide
hadoop.hbase.client.TestAsyncTableAdminApi
hadoop.hbase.client.TestFromClientSideWithCoprocessor
hadoop.hbase.replication.TestReplicationSmallTests
hadoop.hbase.client.TestCloneSnapshotFromClientNormal
hadoop.hbase.replication.TestReplicationSmallTestsSync
hadoop.hbase.tool.TestBulkLoadHFiles
hadoop.hbase.replication.TestReplicationDisableInactivePeer
hadoop.hbase.client.TestSnapshotTemporaryDirectoryWithRegionReplicas
hadoop.hbase.client.TestSnapshotDFSTemporaryDirectory
hadoop.hbase.master.TestSplitWALManager
hadoop.hbase.tool.TestSecureBulkLoadHFiles
hadoop.hbase.master.TestAssignmentManagerMetrics
hadoop.hbase.client.TestSnapshotTemporaryDirectory
hadoop.hbase.client.TestHbck
hadoop.hbase.namespace.TestNamespaceAuditor
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/2/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux a6ba9d82dc3d 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / b426142
maven version: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java 1.8.0_181
findbugs v3.1.11
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/2/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/2/testReport/
Max. process+thread count 4936 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/2/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@mymeiyi mymeiyi force-pushed the hdfs-acl-table-attribute branch from 5160c62 to f18b3bb Compare June 26, 2019 10:24
@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
0 reexec 26 Docker mode activated.
_ Prechecks _
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 252 master passed
+1 compile 54 master passed
+1 checkstyle 70 master passed
+1 shadedjars 270 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 207 master passed
+1 javadoc 31 master passed
_ Patch Compile Tests _
+1 mvninstall 238 the patch passed
+1 compile 51 the patch passed
+1 javac 51 the patch passed
+1 checkstyle 70 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 269 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 730 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 214 the patch passed
+1 javadoc 32 the patch passed
_ Other Tests _
+1 unit 9460 hbase-server in the patch passed.
+1 asflicense 23 The patch does not generate ASF License warnings.
12315
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/3/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 4119d2d58058 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / 0198868
maven version: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java 1.8.0_181
findbugs v3.1.11
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/3/testReport/
Max. process+thread count 4530 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/3/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@@ -513,12 +518,33 @@ private boolean isHdfsAclSet(Table aclTable, String userName, String namespace,
return isSet;
}

private boolean checkInitialized() {
@VisibleForTesting
boolean checkInitialized(Supplier<String> operation) {
Copy link
Member

Choose a reason for hiding this comment

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

Just use the string as the argument ? I don't think here we need the Supplier wrapper ...

&& hdfsAclHelper.checkTablePermissionHasNoCfOrCq(tablePermission);
}

private boolean needSetTableHdfsAcl(TableName tableName, Supplier<String> operation)
Copy link
Member

Choose a reason for hiding this comment

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

Also can remoe the Supplier wrapper ?

return userPermission.getPermission().implies(Permission.Action.READ);
}

boolean checkTablePermissionHasNoCfOrCq(TablePermission tablePermission) {
Copy link
Member

Choose a reason for hiding this comment

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

checkTablePermissionHasNoCfOrCq - > isFamilyOrColumnPermission ?
return it as : tablePermission.hasFamily() || tablePermission.hasQualifier() .


boolean isTableUserScanSnapshotEnabled(TableDescriptor tableDescriptor) {
String value = tableDescriptor.getValue(USER_SCAN_SNAPSHOT_ENABLE);
if (value != null && value.equals("true")) {
Copy link
Member

Choose a reason for hiding this comment

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

Just :

return Boolean.valueOf(value) ? 

tableUsers, tableName);
} else if (!aclTableInitialized
&& Bytes.equals(PermissionStorage.ACL_GLOBAL_NAME, tableName.getName())) {
aclTableInitialized = true;
Copy link
Member

Choose a reason for hiding this comment

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

Oh, you update the aclTableInitialized here when add HDFS_ACL_FAMILY in hbase:acl ? Why just update the flag once the modifyTable called successfully ? I think that will be easy to understand.

}

boolean isTableUserScanSnapshotEnabled(TableDescriptor tableDescriptor) {
String value = tableDescriptor.getValue(USER_SCAN_SNAPSHOT_ENABLE);
Copy link
Member

Choose a reason for hiding this comment

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

The flag should mean whether will we sync the table access to HDFS files ACL ? I think we should a more clear name ?

@mymeiyi mymeiyi force-pushed the hdfs-acl-table-attribute branch from f18b3bb to 4da7e94 Compare June 28, 2019 09:39
hdfsAclHelper.addTableAcl(tableName, users);
SnapshotScannerHDFSAclStorage.addUserTableHdfsAcl(ctx.getEnvironment().getConnection(),
tableUsers, tableName);
}
Copy link
Member

Choose a reason for hiding this comment

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

How it will happen if we have an TableUserScanSnapshot Enabled table, and then modify to disabled ? I think we shold also remove the HDFS ACL ?

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 170 Docker mode activated.
_ Prechecks _
+1 hbaseanti 1 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 327 master passed
+1 compile 68 master passed
+1 checkstyle 87 master passed
+1 shadedjars 342 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 272 master passed
+1 javadoc 42 master passed
_ Patch Compile Tests _
+1 mvninstall 307 the patch passed
+1 compile 84 the patch passed
+1 javac 84 the patch passed
+1 checkstyle 86 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 338 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 932 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 274 the patch passed
+1 javadoc 41 the patch passed
_ Other Tests _
-1 unit 16856 hbase-server in the patch failed.
+1 asflicense 32 The patch does not generate ASF License warnings.
20654
Reason Tests
Failed junit tests hadoop.hbase.master.procedure.TestSCPWithReplicas
Subsystem Report/Notes
Docker Client=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/4/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 20fdb2c0a61f 4.4.0-143-generic #169-Ubuntu SMP Thu Feb 7 07:56:38 UTC 2019 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / b20044c
maven version: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java 1.8.0_181
findbugs v3.1.11
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/4/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/4/testReport/
Max. process+thread count 4890 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/4/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@mymeiyi mymeiyi force-pushed the hdfs-acl-table-attribute branch from 4da7e94 to e6ed33b Compare July 11, 2019 06:33
@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
0 reexec 36 Docker mode activated.
_ Prechecks _
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 241 master passed
+1 compile 52 master passed
+1 checkstyle 62 master passed
+1 shadedjars 260 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 205 master passed
+1 javadoc 30 master passed
_ Patch Compile Tests _
+1 mvninstall 236 the patch passed
+1 compile 50 the patch passed
+1 javac 50 the patch passed
+1 checkstyle 64 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 255 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 744 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 210 the patch passed
+1 javadoc 32 the patch passed
_ Other Tests _
+1 unit 8401 hbase-server in the patch passed.
+1 asflicense 27 The patch does not generate ASF License warnings.
11209
Subsystem Report/Notes
Docker Client=18.09.7 Server=18.09.7 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/5/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux f7580162efcc 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / 438bf32
maven version: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java 1.8.0_181
findbugs v3.1.11
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/5/testReport/
Max. process+thread count 4767 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/5/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

admin.modifyTable(builder.build());
}
// wait until acl table is online
List<RegionInfo> tableRegions = MetaTableAccessor.getTableRegions(
Copy link
Member

Choose a reason for hiding this comment

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

Why to wait & assign the hbase:acl region ? In theory, the modifyTable will ensure that all of the regions are online.

@@ -515,6 +560,18 @@ private static AclEntry aclEntry(AclEntryScope scope, String name) {
.setPermission(READ_EXECUTE).build();
}

void createNonExistDir(Path path) throws IOException {
Copy link
Member

Choose a reason for hiding this comment

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

createDirIfNotExist.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 59 Docker mode activated.
_ Prechecks _
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 243 master passed
+1 compile 50 master passed
+1 checkstyle 64 master passed
+1 shadedjars 279 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 139 master passed
+1 javadoc 31 master passed
_ Patch Compile Tests _
+1 mvninstall 243 the patch passed
+1 compile 51 the patch passed
+1 javac 51 the patch passed
+1 checkstyle 67 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 263 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 761 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 235 the patch passed
+1 javadoc 32 the patch passed
_ Other Tests _
-1 unit 17465 hbase-server in the patch failed.
+1 asflicense 24 The patch does not generate ASF License warnings.
20319
Reason Tests
Failed junit tests hadoop.hbase.client.TestCloneSnapshotFromClientNormal
hadoop.hbase.master.procedure.TestProcedurePriority
hadoop.hbase.client.TestSnapshotDFSTemporaryDirectory
hadoop.hbase.client.TestSnapshotTemporaryDirectory
hadoop.hbase.master.procedure.TestSCPWithReplicas
Subsystem Report/Notes
Docker Client=18.09.7 Server=18.09.7 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/6/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 6be10d6a8bdf 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / 74731c2
maven version: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java 1.8.0_181
findbugs v3.1.11
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/6/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/6/testReport/
Max. process+thread count 4880 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/6/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 215 Docker mode activated.
_ Prechecks _
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 341 master passed
+1 compile 70 master passed
+1 checkstyle 87 master passed
+1 shadedjars 353 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 276 master passed
+1 javadoc 41 master passed
_ Patch Compile Tests _
+1 mvninstall 314 the patch passed
+1 compile 71 the patch passed
+1 javac 71 the patch passed
+1 checkstyle 93 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 346 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 967 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 290 the patch passed
+1 javadoc 42 the patch passed
_ Other Tests _
-1 unit 18510 hbase-server in the patch failed.
+1 asflicense 36 The patch does not generate ASF License warnings.
22453
Reason Tests
Failed junit tests hadoop.hbase.client.TestSnapshotTemporaryDirectory
hadoop.hbase.namespace.TestNamespaceAuditor
hadoop.hbase.replication.TestReplicationEndpoint
hadoop.hbase.master.procedure.TestSCPWithReplicas
hadoop.hbase.client.TestCloneSnapshotFromClientNormal
hadoop.hbase.client.TestSnapshotDFSTemporaryDirectory
Subsystem Report/Notes
Docker Client=18.09.7 Server=18.09.7 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/7/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 1293c6599f82 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / cc38de1
maven version: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java 1.8.0_181
findbugs v3.1.11
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/7/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/7/testReport/
Max. process+thread count 5073 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/7/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@mymeiyi mymeiyi force-pushed the hdfs-acl-table-attribute branch from e6ed33b to 531c054 Compare July 17, 2019 02:16
@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 62 Docker mode activated.
_ Prechecks _
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 268 master passed
+1 compile 54 master passed
+1 checkstyle 71 master passed
+1 shadedjars 286 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 210 master passed
+1 javadoc 33 master passed
_ Patch Compile Tests _
+1 mvninstall 256 the patch passed
+1 compile 56 the patch passed
+1 javac 56 the patch passed
+1 checkstyle 70 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 260 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 778 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 217 the patch passed
+1 javadoc 34 the patch passed
_ Other Tests _
-1 unit 15652 hbase-server in the patch failed.
+1 asflicense 28 The patch does not generate ASF License warnings.
18650
Reason Tests
Failed junit tests hadoop.hbase.client.TestSnapshotDFSTemporaryDirectory
hadoop.hbase.client.TestSnapshotTemporaryDirectory
Subsystem Report/Notes
Docker Client=18.09.7 Server=18.09.7 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/8/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux dfd668c73449 4.4.0-137-generic #163-Ubuntu SMP Mon Sep 24 13:14:43 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / 72e58a8
maven version: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java 1.8.0_181
findbugs v3.1.11
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/8/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/8/testReport/
Max. process+thread count 4977 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/8/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 169 Docker mode activated.
_ Prechecks _
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 321 master passed
+1 compile 70 master passed
+1 checkstyle 90 master passed
+1 shadedjars 341 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 278 master passed
+1 javadoc 41 master passed
_ Patch Compile Tests _
+1 mvninstall 314 the patch passed
+1 compile 71 the patch passed
+1 javac 71 the patch passed
+1 checkstyle 87 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 349 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 940 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 279 the patch passed
+1 javadoc 42 the patch passed
_ Other Tests _
-1 unit 16104 hbase-server in the patch failed.
+1 asflicense 28 The patch does not generate ASF License warnings.
19912
Reason Tests
Failed junit tests hadoop.hbase.client.TestCloneSnapshotFromClientNormal
Subsystem Report/Notes
Docker Client=18.09.8 Server=18.09.8 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/9/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 1f801a1d1c6a 4.4.0-143-generic #169-Ubuntu SMP Thu Feb 7 07:56:38 UTC 2019 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / 00075ea
maven version: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java 1.8.0_181
findbugs v3.1.11
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/9/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/9/testReport/
Max. process+thread count 4742 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/9/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 70 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
-1 mvninstall 11 root in master failed.
-1 compile 54 hbase-server in master failed.
+1 checkstyle 70 master passed
+1 shadedjars 264 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 31 master passed
0 spotbugs 330 Used deprecated FindBugs config; considering switching to SpotBugs.
-1 findbugs 34 hbase-server in master failed.
_ Patch Compile Tests _
-1 mvninstall 12 root in the patch failed.
-1 compile 36 hbase-server in the patch failed.
-1 javac 36 hbase-server in the patch failed.
+1 checkstyle 71 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 260 patch has no errors when building our shaded downstream artifacts.
-1 hadoopcheck 10 The patch causes 10 errors with Hadoop v2.8.5.
-1 hadoopcheck 20 The patch causes 10 errors with Hadoop v2.9.2.
-1 hadoopcheck 29 The patch causes 10 errors with Hadoop v3.1.2.
+1 javadoc 30 the patch passed
-1 findbugs 33 hbase-server in the patch failed.
_ Other Tests _
-1 unit 37 hbase-server in the patch failed.
+1 asflicense 10 The patch does not generate ASF License warnings.
1108
Subsystem Report/Notes
Docker Client=18.09.8 Server=18.09.8 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux dd56b1d9c7ed 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / c9293b0
Default Java 1.8.0_181
mvninstall https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/branch-mvninstall-root.txt
compile https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/branch-compile-hbase-server.txt
findbugs https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/branch-findbugs-hbase-server.txt
mvninstall https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-mvninstall-root.txt
compile https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-compile-hbase-server.txt
javac https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-compile-hbase-server.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-javac-2.8.5.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-javac-2.9.2.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-javac-3.1.2.txt
findbugs https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-findbugs-hbase-server.txt
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/testReport/
Max. process+thread count 87 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z)
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 57 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 360 master passed
+1 compile 70 master passed
+1 checkstyle 101 master passed
+1 shadedjars 367 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 45 master passed
0 spotbugs 330 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 327 master passed
_ Patch Compile Tests _
+1 mvninstall 336 the patch passed
+1 compile 75 the patch passed
+1 javac 75 the patch passed
+1 checkstyle 98 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 360 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 1029 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 45 the patch passed
+1 findbugs 334 the patch passed
_ Other Tests _
-1 unit 16195 hbase-server in the patch failed.
+1 asflicense 28 The patch does not generate ASF License warnings.
20249
Reason Tests
Failed junit tests hadoop.hbase.security.visibility.TestVisibilityLabelsWithDefaultVisLabelService
hadoop.hbase.master.procedure.TestSCPWithMeta
hadoop.hbase.master.procedure.TestEnableTableProcedure
hadoop.hbase.master.TestGetLastFlushedSequenceId
hadoop.hbase.TestZooKeeper
hadoop.hbase.regionserver.TestMultiColumnScannerWithAlgoGZAndNoDataEncoding
hadoop.hbase.TestMultiVersions
hadoop.hbase.master.procedure.TestProcedureAdmin
hadoop.hbase.master.TestDLSFSHLog
hadoop.hbase.regionserver.TestRegionReplicasWithModifyTable
hadoop.hbase.master.procedure.TestSCPWithReplicasWithoutZKCoordinated
hadoop.hbase.master.TestMasterFailover
hadoop.hbase.regionserver.TestEncryptionRandomKeying
hadoop.hbase.master.procedure.TestSCPWithMetaWithReplicas
hadoop.hbase.master.TestDLSAsyncFSWAL
hadoop.hbase.master.procedure.TestSCPWithMetaWithoutZKCoordinated
hadoop.hbase.master.procedure.TestMasterProcedureEvents
hadoop.hbase.regionserver.TestMultiLogThreshold
hadoop.hbase.TestIOFencing
hadoop.hbase.master.snapshot.TestSnapshotWhileRSCrashes
hadoop.hbase.filter.TestScanRowPrefix
hadoop.hbase.master.procedure.TestSCPWithoutZKCoordinated
hadoop.hbase.master.TestCloseAnOpeningRegion
hadoop.hbase.master.procedure.TestMasterObserverPostCalls
hadoop.hbase.master.procedure.TestFastFailOnProcedureNotRegistered
hadoop.hbase.regionserver.TestRegionServerHostname
hadoop.hbase.master.procedure.TestDeleteNamespaceProcedure
hadoop.hbase.master.procedure.TestSCP
hadoop.hbase.filter.TestFuzzyRowAndColumnRangeFilter
hadoop.hbase.master.TestLoadProcedureError
hadoop.hbase.master.TestClusterRestartFailover
hadoop.hbase.regionserver.TestRegionServerAbort
hadoop.hbase.master.TestMetaAssignmentWithStopMaster
hadoop.hbase.master.procedure.TestMasterFailoverWithProcedures
hadoop.hbase.master.procedure.TestDeleteColumnFamilyProcedureFromClient
hadoop.hbase.master.procedure.TestSCPWithoutMetaWithReplicasWithoutZKCoordinated
hadoop.hbase.TestMetaTableAccessor
hadoop.hbase.master.procedure.TestProcedurePriority
hadoop.hbase.master.procedure.TestCreateTableProcedureMuitipleRegions
hadoop.hbase.master.procedure.TestSCPWithoutMetaWithReplicas
hadoop.hbase.master.procedure.TestCreateNamespaceProcedure
hadoop.hbase.TestAcidGuaranteesWithBasicPolicy
hadoop.hbase.master.procedure.TestModifyTableProcedure
hadoop.hbase.security.visibility.TestVisibilityLabelsWithDeletes
hadoop.hbase.master.procedure.TestTruncateTableProcedure
hadoop.hbase.master.procedure.TestCloneSnapshotProcedure
hadoop.hbase.master.TestMasterFailoverBalancerPersistence
hadoop.hbase.master.snapshot.TestSnapshotFileCache
hadoop.hbase.master.procedure.TestSchedulerQueueDeadLock
hadoop.hbase.TestNamespace
hadoop.hbase.master.procedure.TestSCPWithMetaWithReplicasWithoutZKCoordinated
hadoop.hbase.master.procedure.TestRestoreSnapshotProcedure
hadoop.hbase.regionserver.TestMutateRowsRecovery
hadoop.hbase.filter.TestMultiRowRangeFilter
hadoop.hbase.regionserver.TestRegionServerAbortTimeout
hadoop.hbase.master.TestMasterNoCluster
Subsystem Report/Notes
Docker Client=18.09.8 Server=18.09.8 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/11/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux d6a1ee21af81 4.4.0-154-generic #181-Ubuntu SMP Tue Jun 25 05:29:03 UTC 2019 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / aa9679d
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/11/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/11/testReport/
Max. process+thread count 4686 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/11/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 92 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 271 master passed
+1 compile 62 master passed
+1 checkstyle 90 master passed
+1 shadedjars 300 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 37 master passed
0 spotbugs 271 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 268 master passed
_ Patch Compile Tests _
+1 mvninstall 284 the patch passed
+1 compile 59 the patch passed
+1 javac 59 the patch passed
+1 checkstyle 92 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 308 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 865 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 35 the patch passed
+1 findbugs 283 the patch passed
_ Other Tests _
-1 unit 1743 hbase-server in the patch failed.
+1 asflicense 14 The patch does not generate ASF License warnings.
5151
Reason Tests
Failed junit tests hadoop.hbase.regionserver.TestBulkLoad
hadoop.hbase.coprocessor.TestRegionObserverStacking
hadoop.hbase.filter.TestFilterFromRegionSide
hadoop.hbase.tool.coprocessor.CoprocessorValidatorTest
hadoop.hbase.coprocessor.TestCoprocessorInterface
hadoop.hbase.client.TestAsyncAccessControlAdminApi
hadoop.hbase.coprocessor.TestCoreRegionServerCoprocessor
Subsystem Report/Notes
Docker Client=18.09.7 Server=18.09.7 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/13/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux a9dbcf484dd1 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / 7f68591
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/13/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/13/testReport/
Max. process+thread count 670 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/13/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 33 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 253 master passed
+1 compile 51 master passed
+1 checkstyle 72 master passed
+1 shadedjars 269 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 35 master passed
0 spotbugs 248 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 244 master passed
_ Patch Compile Tests _
+1 mvninstall 251 the patch passed
+1 compile 55 the patch passed
+1 javac 55 the patch passed
+1 checkstyle 75 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 272 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 768 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 32 the patch passed
+1 findbugs 238 the patch passed
_ Other Tests _
-1 unit 8028 hbase-server in the patch failed.
+1 asflicense 29 The patch does not generate ASF License warnings.
11020
Reason Tests
Failed junit tests hadoop.hbase.regionserver.wal.TestHBaseWalOnEC
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/14/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux f5eb29de4d02 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / 9615c64
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/14/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/14/testReport/
Max. process+thread count 4578 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/14/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 96 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
-1 mvninstall 12 root in master failed.
-1 compile 48 hbase-server in master failed.
+1 checkstyle 76 master passed
+1 shadedjars 283 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 33 master passed
0 spotbugs 353 Used deprecated FindBugs config; considering switching to SpotBugs.
-1 findbugs 36 hbase-server in master failed.
_ Patch Compile Tests _
-1 mvninstall 13 root in the patch failed.
-1 compile 33 hbase-server in the patch failed.
-1 javac 33 hbase-server in the patch failed.
+1 checkstyle 71 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 267 patch has no errors when building our shaded downstream artifacts.
-1 hadoopcheck 11 The patch causes 10 errors with Hadoop v2.8.5.
-1 hadoopcheck 22 The patch causes 10 errors with Hadoop v2.9.2.
-1 hadoopcheck 32 The patch causes 10 errors with Hadoop v3.1.2.
+1 javadoc 32 the patch passed
-1 findbugs 35 hbase-server in the patch failed.
_ Other Tests _
-1 unit 35 hbase-server in the patch failed.
+1 asflicense 8 The patch does not generate ASF License warnings.
1172
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 5c6726fc0e68 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / 0e34dcb
Default Java 1.8.0_181
mvninstall https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/branch-mvninstall-root.txt
compile https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/branch-compile-hbase-server.txt
findbugs https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/branch-findbugs-hbase-server.txt
mvninstall https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-mvninstall-root.txt
compile https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-compile-hbase-server.txt
javac https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-compile-hbase-server.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-javac-2.8.5.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-javac-2.9.2.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-javac-3.1.2.txt
findbugs https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-findbugs-hbase-server.txt
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/testReport/
Max. process+thread count 87 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z)
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 62 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 319 master passed
+1 compile 67 master passed
+1 checkstyle 94 master passed
+1 shadedjars 342 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 43 master passed
0 spotbugs 321 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 318 master passed
_ Patch Compile Tests _
+1 mvninstall 316 the patch passed
+1 compile 68 the patch passed
+1 javac 68 the patch passed
+1 checkstyle 93 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 343 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 954 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 43 the patch passed
+1 findbugs 332 the patch passed
_ Other Tests _
-1 unit 14211 hbase-server in the patch failed.
+1 asflicense 32 The patch does not generate ASF License warnings.
18018
Reason Tests
Failed junit tests hadoop.hbase.client.TestSnapshotTemporaryDirectoryWithRegionReplicas
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/16/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux c5f00443193d 4.4.0-154-generic #181-Ubuntu SMP Tue Jun 25 05:29:03 UTC 2019 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / 06f5c43
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/16/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/16/testReport/
Max. process+thread count 4425 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/16/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 61 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 235 master passed
+1 compile 50 master passed
+1 checkstyle 71 master passed
+1 shadedjars 289 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 35 master passed
0 spotbugs 251 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 249 master passed
_ Patch Compile Tests _
+1 mvninstall 261 the patch passed
+1 compile 55 the patch passed
+1 javac 55 the patch passed
+1 checkstyle 74 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 271 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 754 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 32 the patch passed
+1 findbugs 252 the patch passed
_ Other Tests _
-1 unit 15843 hbase-server in the patch failed.
+1 asflicense 40 The patch does not generate ASF License warnings.
18891
Reason Tests
Failed junit tests hadoop.hbase.client.TestSnapshotTemporaryDirectoryWithRegionReplicas
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/17/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux f4cea2145fad 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / 06f5c43
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/17/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/17/testReport/
Max. process+thread count 4663 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/17/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 70 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 418 master passed
+1 compile 85 master passed
+1 checkstyle 96 master passed
+1 shadedjars 368 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 41 master passed
0 spotbugs 304 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 302 master passed
_ Patch Compile Tests _
+1 mvninstall 404 the patch passed
+1 compile 71 the patch passed
+1 javac 71 the patch passed
+1 checkstyle 104 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 368 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 1213 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 39 the patch passed
+1 findbugs 287 the patch passed
_ Other Tests _
-1 unit 17039 hbase-server in the patch failed.
+1 asflicense 25 The patch does not generate ASF License warnings.
21367
Reason Tests
Failed junit tests hadoop.hbase.master.procedure.TestSCPWithReplicas
hadoop.hbase.client.TestAsyncSnapshotAdminApi
hadoop.hbase.client.TestMobSnapshotCloneIndependence
hadoop.hbase.util.TestFromClientSide3WoUnsafe
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/18/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 9b8dba2f1a4d 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / e74d501
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/18/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/18/testReport/
Max. process+thread count 4716 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/18/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
0 reexec 49 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 308 master passed
+1 compile 54 master passed
+1 checkstyle 72 master passed
+1 shadedjars 279 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 31 master passed
0 spotbugs 234 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 231 master passed
_ Patch Compile Tests _
+1 mvninstall 317 the patch passed
+1 compile 55 the patch passed
+1 javac 55 the patch passed
+1 checkstyle 71 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 280 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 869 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 32 the patch passed
+1 findbugs 230 the patch passed
_ Other Tests _
+1 unit 14522 hbase-server in the patch passed.
+1 asflicense 25 The patch does not generate ASF License warnings.
17808
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/21/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 3a04234db35d 4.4.0-137-generic #163-Ubuntu SMP Mon Sep 24 13:14:43 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / 6705d4f
Default Java 1.8.0_181
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/21/testReport/
Max. process+thread count 4770 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/21/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 0 Docker mode activated.
-1 patch 9 #336 does not apply to master. Rebase required? Wrong Branch? See https://yetus.apache.org/documentation/in-progress/precommit-patchnames for help.
Subsystem Report/Notes
GITHUB PR #336
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/24/console
versions git=2.7.4
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 0 Docker mode activated.
-1 patch 10 #336 does not apply to master. Rebase required? Wrong Branch? See https://yetus.apache.org/documentation/in-progress/precommit-patchnames for help.
Subsystem Report/Notes
GITHUB PR #336
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/25/console
versions git=2.7.4
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
0 reexec 37 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 286 master passed
+1 compile 53 master passed
+1 checkstyle 73 master passed
+1 shadedjars 257 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 35 master passed
0 spotbugs 232 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 230 master passed
_ Patch Compile Tests _
+1 mvninstall 299 the patch passed
+1 compile 55 the patch passed
+1 javac 55 the patch passed
+1 checkstyle 71 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 276 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 919 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 35 the patch passed
+1 findbugs 314 the patch passed
_ Other Tests _
+1 unit 8361 hbase-server in the patch passed.
+1 asflicense 24 The patch does not generate ASF License warnings.
11696
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/23/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux b64fcb435f41 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / 7ebf80f
Default Java 1.8.0_181
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/23/testReport/
Max. process+thread count 4799 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/23/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 76 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 309 master passed
+1 compile 57 master passed
+1 checkstyle 79 master passed
+1 shadedjars 277 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 35 master passed
0 spotbugs 238 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 235 master passed
_ Patch Compile Tests _
+1 mvninstall 321 the patch passed
+1 compile 57 the patch passed
+1 javac 57 the patch passed
+1 checkstyle 75 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 274 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 1004 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 39 the patch passed
+1 findbugs 252 the patch passed
_ Other Tests _
-1 unit 20458 hbase-server in the patch failed.
+1 asflicense 27 The patch does not generate ASF License warnings.
23969
Reason Tests
Failed junit tests hadoop.hbase.client.TestCloneSnapshotFromClientCloneLinksAfterDelete
hadoop.hbase.client.TestRestoreSnapshotFromClientClone
hadoop.hbase.client.TestConnection
hadoop.hbase.namespace.TestNamespaceAuditor
hadoop.hbase.client.TestMobSnapshotCloneIndependence
hadoop.hbase.master.procedure.TestTruncateTableProcedure
hadoop.hbase.client.TestRestoreSnapshotFromClientSimple
hadoop.hbase.tool.TestSecureBulkLoadHFiles
hadoop.hbase.client.TestCloneSnapshotFromClientNormal
hadoop.hbase.master.procedure.TestSCPWithReplicasWithoutZKCoordinated
hadoop.hbase.client.TestAsyncReplicationAdminApiWithClusters
hadoop.hbase.replication.TestReplicationSmallTests
hadoop.hbase.tool.TestBulkLoadHFiles
hadoop.hbase.util.TestFromClientSide3WoUnsafe
hadoop.hbase.client.TestAsyncTableAdminApi3
hadoop.hbase.client.TestSnapshotDFSTemporaryDirectory
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/22/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 8e90c30744eb 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / 7ebf80f
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/22/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/22/testReport/
Max. process+thread count 4988 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/22/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 0 Docker mode activated.
-1 patch 10 #336 does not apply to master. Rebase required? Wrong Branch? See https://yetus.apache.org/documentation/in-progress/precommit-patchnames for help.
Subsystem Report/Notes
GITHUB PR #336
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/26/console
versions git=2.7.4
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 0 Docker mode activated.
-1 patch 9 #336 does not apply to master. Rebase required? Wrong Branch? See https://yetus.apache.org/documentation/in-progress/precommit-patchnames for help.
Subsystem Report/Notes
GITHUB PR #336
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/27/console
versions git=2.7.4
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@mymeiyi mymeiyi force-pushed the hdfs-acl-table-attribute branch from 531c054 to 5c8a26f Compare July 25, 2019 03:30
@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 88 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
-1 mvninstall 376 root in master failed.
+1 compile 60 master passed
+1 checkstyle 78 master passed
+1 shadedjars 287 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 37 master passed
0 spotbugs 247 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 244 master passed
_ Patch Compile Tests _
-1 mvninstall 334 root in the patch failed.
+1 compile 57 the patch passed
+1 javac 57 the patch passed
+1 checkstyle 74 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 293 patch has no errors when building our shaded downstream artifacts.
-1 hadoopcheck 321 The patch causes 10 errors with Hadoop v2.8.5.
-1 hadoopcheck 682 The patch causes 10 errors with Hadoop v2.9.2.
-1 hadoopcheck 1061 The patch causes 10 errors with Hadoop v3.1.2.
+1 javadoc 37 the patch passed
+1 findbugs 250 the patch passed
_ Other Tests _
-1 unit 19928 hbase-server in the patch failed.
+1 asflicense 23 The patch does not generate ASF License warnings.
23323
Reason Tests
Failed junit tests hadoop.hbase.client.TestCloneSnapshotFromClientNormal
hadoop.hbase.tool.TestSecureBulkLoadHFiles
hadoop.hbase.coprocessor.TestRegionServerCoprocessorExceptionWithRemove
hadoop.hbase.client.TestAsyncReplicationAdminApiWithClusters
hadoop.hbase.client.TestConnection
hadoop.hbase.master.procedure.TestTruncateTableProcedure
hadoop.hbase.client.TestRestoreSnapshotFromClientSchemaChange
hadoop.hbase.replication.multiwal.TestReplicationEndpointWithMultipleAsyncWAL
hadoop.hbase.master.procedure.TestRestoreSnapshotProcedure
hadoop.hbase.namespace.TestNamespaceAuditor
hadoop.hbase.client.TestAsyncTableAdminApi
hadoop.hbase.master.procedure.TestSCPWithReplicasWithoutZKCoordinated
hadoop.hbase.replication.TestReplicationSmallTestsSync
hadoop.hbase.tool.TestBulkLoadHFiles
hadoop.hbase.util.TestFromClientSide3WoUnsafe
hadoop.hbase.client.TestSnapshotDFSTemporaryDirectory
hadoop.hbase.client.TestSnapshotTemporaryDirectory
hadoop.hbase.master.procedure.TestSCPWithReplicas
hadoop.hbase.replication.TestReplicationSmallTests
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux a691f281ad7d 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / a65e72d
Default Java 1.8.0_181
mvninstall https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/branch-mvninstall-root.txt
mvninstall https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/patch-mvninstall-root.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/patch-javac-2.8.5.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/patch-javac-2.9.2.txt
hadoopcheck https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/patch-javac-3.1.2.txt
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/testReport/
Max. process+thread count 5113 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 71 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 351 master passed
+1 compile 51 master passed
+1 checkstyle 73 master passed
+1 shadedjars 291 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 34 master passed
0 spotbugs 243 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 241 master passed
_ Patch Compile Tests _
+1 mvninstall 322 the patch passed
+1 compile 56 the patch passed
+1 javac 56 the patch passed
+1 checkstyle 73 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 287 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 957 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 63 the patch passed
+1 findbugs 303 the patch passed
_ Other Tests _
-1 unit 18710 hbase-server in the patch failed.
+1 asflicense 41 The patch does not generate ASF License warnings.
22362
Reason Tests
Failed junit tests hadoop.hbase.master.procedure.TestSCPWithReplicas
hadoop.hbase.replication.TestReplicationSmallTests
hadoop.hbase.replication.TestReplicationSmallTestsSync
hadoop.hbase.replication.multiwal.TestReplicationSyncUpToolWithMultipleWAL
hadoop.hbase.replication.TestReplicationSyncUpToolWithBulkLoadedData
hadoop.hbase.replication.TestReplicationKillSlaveRS
hadoop.hbase.tool.TestSecureBulkLoadHFiles
hadoop.hbase.tool.TestBulkLoadHFiles
hadoop.hbase.replication.multiwal.TestReplicationSyncUpToolWithMultipleAsyncWAL
hadoop.hbase.util.TestFromClientSide3WoUnsafe
hadoop.hbase.client.TestConnection
hadoop.hbase.namespace.TestNamespaceAuditor
hadoop.hbase.client.TestAsyncTableAdminApi2
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/29/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 11caeb4b6993 4.4.0-137-generic #163-Ubuntu SMP Mon Sep 24 13:14:43 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / e28afec
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/29/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/29/testReport/
Max. process+thread count 5171 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/29/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 58 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 296 master passed
+1 compile 53 master passed
+1 checkstyle 72 master passed
+1 shadedjars 266 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 34 master passed
0 spotbugs 234 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 233 master passed
_ Patch Compile Tests _
+1 mvninstall 336 the patch passed
+1 compile 57 the patch passed
+1 javac 57 the patch passed
+1 checkstyle 74 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 295 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 910 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 35 the patch passed
+1 findbugs 248 the patch passed
_ Other Tests _
-1 unit 17153 hbase-server in the patch failed.
+1 asflicense 40 The patch does not generate ASF License warnings.
20535
Reason Tests
Failed junit tests hadoop.hbase.master.procedure.TestSCPWithReplicasWithoutZKCoordinated
hadoop.hbase.namespace.TestNamespaceAuditor
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/30/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux f963c358fa61 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / b83d0c0
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/30/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/30/testReport/
Max. process+thread count 4792 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/30/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 93 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 331 master passed
+1 compile 55 master passed
+1 checkstyle 88 master passed
+1 shadedjars 293 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 36 master passed
0 spotbugs 261 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 259 master passed
_ Patch Compile Tests _
+1 mvninstall 343 the patch passed
+1 compile 62 the patch passed
+1 javac 62 the patch passed
+1 checkstyle 87 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 312 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 994 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 35 the patch passed
+1 findbugs 251 the patch passed
_ Other Tests _
-1 unit 12957 hbase-server in the patch failed.
+1 asflicense 25 The patch does not generate ASF License warnings.
16619
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/31/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 4eb85622ec27 4.15.0-54-generic #58-Ubuntu SMP Mon Jun 24 10:55:24 UTC 2019 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / de98fee
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/31/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/31/testReport/
Max. process+thread count 4916 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/31/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 81 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 438 master passed
+1 compile 77 master passed
+1 checkstyle 106 master passed
+1 shadedjars 372 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 46 master passed
0 spotbugs 318 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 315 master passed
_ Patch Compile Tests _
+1 mvninstall 443 the patch passed
+1 compile 75 the patch passed
+1 javac 75 the patch passed
+1 checkstyle 103 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 383 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 1370 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 43 the patch passed
+1 findbugs 327 the patch passed
_ Other Tests _
-1 unit 17808 hbase-server in the patch failed.
+1 asflicense 29 The patch does not generate ASF License warnings.
22552
Reason Tests
Failed junit tests hadoop.hbase.security.access.TestSnapshotScannerHDFSAclController
hadoop.hbase.tool.TestSecureBulkLoadHFiles
hadoop.hbase.client.TestAsyncTableAdminApi
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/32/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 35ff22d5831c 4.4.0-154-generic #181-Ubuntu SMP Tue Jun 25 05:29:03 UTC 2019 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / 747d000
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/32/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/32/testReport/
Max. process+thread count 4688 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/32/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 176 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 375 master passed
+1 compile 53 master passed
+1 checkstyle 79 master passed
+1 shadedjars 272 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 35 master passed
0 spotbugs 239 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 236 master passed
_ Patch Compile Tests _
+1 mvninstall 294 the patch passed
+1 compile 52 the patch passed
+1 javac 52 the patch passed
+1 checkstyle 74 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 261 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 912 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 34 the patch passed
+1 findbugs 254 the patch passed
_ Other Tests _
-1 unit 14912 hbase-server in the patch failed.
+1 asflicense 38 The patch does not generate ASF License warnings.
18429
Reason Tests
Failed junit tests hadoop.hbase.replication.TestSyncReplicationStandbyKillMaster
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/33/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux d0fa0305720f 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / fa77c75
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/33/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/33/testReport/
Max. process+thread count 4649 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/33/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 90 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 344 master passed
+1 compile 58 master passed
+1 checkstyle 93 master passed
+1 shadedjars 304 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 39 master passed
0 spotbugs 278 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 276 master passed
_ Patch Compile Tests _
+1 mvninstall 378 the patch passed
+1 compile 64 the patch passed
+1 javac 64 the patch passed
+1 checkstyle 95 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 346 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 1212 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 37 the patch passed
+1 findbugs 268 the patch passed
_ Other Tests _
-1 unit 13955 hbase-server in the patch failed.
+1 asflicense 23 The patch does not generate ASF License warnings.
17999
Subsystem Report/Notes
Docker Client=18.09.7 Server=18.09.7 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/34/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 551659e648cd 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / 1cb37f1
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/34/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/34/testReport/
Max. process+thread count 4785 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/34/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 75 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 342 master passed
+1 compile 56 master passed
+1 checkstyle 75 master passed
+1 shadedjars 292 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 34 master passed
0 spotbugs 238 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 236 master passed
_ Patch Compile Tests _
+1 mvninstall 320 the patch passed
+1 compile 56 the patch passed
+1 javac 56 the patch passed
+1 checkstyle 76 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 260 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 1008 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 34 the patch passed
+1 findbugs 253 the patch passed
_ Other Tests _
-1 unit 17023 hbase-server in the patch failed.
+1 asflicense 42 The patch does not generate ASF License warnings.
20540
Reason Tests
Failed junit tests hadoop.hbase.util.TestFromClientSide3WoUnsafe
hadoop.hbase.client.TestAsyncTableAdminApi3
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/35/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 7160d3203ce0 4.4.0-137-generic #163-Ubuntu SMP Mon Sep 24 13:14:43 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / cf8114a
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/35/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/35/testReport/
Max. process+thread count 5129 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/35/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 83 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 302 master passed
+1 compile 52 master passed
+1 checkstyle 75 master passed
+1 shadedjars 269 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 34 master passed
0 spotbugs 241 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 239 master passed
_ Patch Compile Tests _
+1 mvninstall 292 the patch passed
+1 compile 56 the patch passed
+1 javac 56 the patch passed
+1 checkstyle 75 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 271 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 916 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 33 the patch passed
+1 findbugs 234 the patch passed
_ Other Tests _
-1 unit 15802 hbase-server in the patch failed.
+1 asflicense 50 The patch does not generate ASF License warnings.
19167
Reason Tests
Failed junit tests hadoop.hbase.namespace.TestNamespaceAuditor
hadoop.hbase.master.procedure.TestSCPWithReplicas
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/36/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 43abb0213c24 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / 3318b4b
Default Java 1.8.0_181
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/36/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/36/testReport/
Max. process+thread count 4706 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/36/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
0 reexec 177 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 hbaseanti 0 Patch does not have any anti-patterns.
+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.
_ master Compile Tests _
+1 mvninstall 373 master passed
+1 compile 70 master passed
+1 checkstyle 93 master passed
+1 shadedjars 342 branch has no errors when building our shaded downstream artifacts.
+1 javadoc 44 master passed
0 spotbugs 331 Used deprecated FindBugs config; considering switching to SpotBugs.
+1 findbugs 329 master passed
_ Patch Compile Tests _
+1 mvninstall 405 the patch passed
+1 compile 71 the patch passed
+1 javac 71 the patch passed
+1 checkstyle 96 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 340 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 1130 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 javadoc 42 the patch passed
+1 findbugs 326 the patch passed
_ Other Tests _
+1 unit 17436 hbase-server in the patch passed.
+1 asflicense 33 The patch does not generate ASF License warnings.
21750
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/37/artifact/out/Dockerfile
GITHUB PR #336
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 85df601c126c 4.4.0-143-generic #169-Ubuntu SMP Thu Feb 7 07:56:38 UTC 2019 x86_64 GNU/Linux
Build tool maven
Personality /home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revision master / 064f5f1
Default Java 1.8.0_181
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/37/testReport/
Max. process+thread count 4681 (vs. ulimit of 10000)
modules C: hbase-server U: hbase-server
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/37/console
versions git=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@mymeiyi mymeiyi merged commit 7294af8 into apache:master Jul 29, 2019
mymeiyi added a commit that referenced this pull request Jul 29, 2019
@mymeiyi mymeiyi deleted the hdfs-acl-table-attribute branch September 4, 2019 06:48
infraio pushed a commit to infraio/hbase that referenced this pull request Aug 17, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants