Skip to content

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

Merged
mymeiyi merged 1 commit into
apache:masterfrom
mymeiyi:hdfs-acl-table-attribute
Jul 29, 2019
Merged

HBASE-22580 Add a table attribute to make user scan snapshot feature configurable for table#336
mymeiyi merged 1 commit into
apache:masterfrom
mymeiyi:hdfs-acl-table-attribute

Conversation

@mymeiyi

Copy link
Copy Markdown
Contributor

No description provided.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec24Docker mode activated.
_ Prechecks _
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
0mvndep26Maven dependency ordering for branch
+1mvninstall244master passed
+1compile75master passed
+1checkstyle97master passed
+1shadedjars257branch has no errors when building our shaded downstream artifacts.
+1findbugs265master passed
+1javadoc55master passed
_ Patch Compile Tests _
0mvndep15Maven dependency ordering for patch
+1mvninstall245the patch passed
+1compile76the patch passed
+1javac76the patch passed
-1checkstyle66hbase-server: The patch generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
+1whitespace0The patch has no whitespace issues.
+1shadedjars268patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck743Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1findbugs276the patch passed
+1javadoc56the patch passed
_ Other Tests _
+1unit101hbase-client in the patch passed.
+1unit8772hbase-server in the patch passed.
+1asflicense60The patch does not generate ASF License warnings.
12063
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 2d0c46c496ed 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/testptch/patchprocess/precommit/personality/provided.sh
git revisionmaster / 15ac781
mavenversion: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java1.8.0_181
findbugsv3.1.11
checkstylehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/1/artifact/out/diff-checkstyle-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/1/testReport/
Max. process+thread count4829 (vs. ulimit of 10000)
modulesC: hbase-client hbase-server U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/1/console
Powered byApache 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
Copy Markdown
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
mymeiyiforce-pushed the hdfs-acl-table-attribute branch from fec069d to 5160c62CompareJune 25, 2019 09:49
}

boolean isTableUserScanSnapshotEnabled(TableDescriptor tableDescriptor) {
return tableDescriptor.getCoprocessorDescriptors().stream()

Copy link
Copy Markdown
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
Copy Markdown
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
Copy Markdown
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
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec85Docker mode activated.
_ Prechecks _
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall323master passed
+1compile54master passed
+1checkstyle72master passed
+1shadedjars275branch has no errors when building our shaded downstream artifacts.
+1findbugs215master passed
+1javadoc33master passed
_ Patch Compile Tests _
+1mvninstall256the patch passed
+1compile53the patch passed
+1javac53the patch passed
+1checkstyle68the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars273patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck797Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1findbugs223the patch passed
+1javadoc35the patch passed
_ Other Tests _
-1unit19432hbase-server in the patch failed.
+1asflicense30The patch does not generate ASF License warnings.
22560
ReasonTests
Failed junit testshadoop.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
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux a6ba9d82dc3d 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/testptch/patchprocess/precommit/personality/provided.sh
git revisionmaster / b426142
mavenversion: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java1.8.0_181
findbugsv3.1.11
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/2/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/2/testReport/
Max. process+thread count4936 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/2/console
Powered byApache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@mymeiyi
mymeiyiforce-pushed the hdfs-acl-table-attribute branch from 5160c62 to f18b3bbCompareJune 26, 2019 10:24
@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
0reexec26Docker mode activated.
_ Prechecks _
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall252master passed
+1compile54master passed
+1checkstyle70master passed
+1shadedjars270branch has no errors when building our shaded downstream artifacts.
+1findbugs207master passed
+1javadoc31master passed
_ Patch Compile Tests _
+1mvninstall238the patch passed
+1compile51the patch passed
+1javac51the patch passed
+1checkstyle70the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars269patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck730Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1findbugs214the patch passed
+1javadoc32the patch passed
_ Other Tests _
+1unit9460hbase-server in the patch passed.
+1asflicense23The patch does not generate ASF License warnings.
12315
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 4119d2d58058 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/testptch/patchprocess/precommit/personality/provided.sh
git revisionmaster / 0198868
mavenversion: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java1.8.0_181
findbugsv3.1.11
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/3/testReport/
Max. process+thread count4530 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/3/console
Powered byApache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.


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

Copy link
Copy Markdown
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
Copy Markdown
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
Copy Markdown
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
Copy Markdown
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
Copy Markdown
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
Copy Markdown
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
mymeiyiforce-pushed the hdfs-acl-table-attribute branch from f18b3bb to 4da7e94CompareJune 28, 2019 09:39
hdfsAclHelper.addTableAcl(tableName, users);
SnapshotScannerHDFSAclStorage.addUserTableHdfsAcl(ctx.getEnvironment().getConnection(),
tableUsers, tableName);
}

Copy link
Copy Markdown
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
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec170Docker mode activated.
_ Prechecks _
+1hbaseanti1Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall327master passed
+1compile68master passed
+1checkstyle87master passed
+1shadedjars342branch has no errors when building our shaded downstream artifacts.
+1findbugs272master passed
+1javadoc42master passed
_ Patch Compile Tests _
+1mvninstall307the patch passed
+1compile84the patch passed
+1javac84the patch passed
+1checkstyle86the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars338patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck932Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1findbugs274the patch passed
+1javadoc41the patch passed
_ Other Tests _
-1unit16856hbase-server in the patch failed.
+1asflicense32The patch does not generate ASF License warnings.
20654
ReasonTests
Failed junit testshadoop.hbase.master.procedure.TestSCPWithReplicas
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 20fdb2c0a61f 4.4.0-143-generic #169-Ubuntu SMP Thu Feb 7 07:56:38 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/testptch/patchprocess/precommit/personality/provided.sh
git revisionmaster / b20044c
mavenversion: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java1.8.0_181
findbugsv3.1.11
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/4/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/4/testReport/
Max. process+thread count4890 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/4/console
Powered byApache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@mymeiyi
mymeiyiforce-pushed the hdfs-acl-table-attribute branch from 4da7e94 to e6ed33bCompareJuly 11, 2019 06:33
@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
0reexec36Docker mode activated.
_ Prechecks _
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall241master passed
+1compile52master passed
+1checkstyle62master passed
+1shadedjars260branch has no errors when building our shaded downstream artifacts.
+1findbugs205master passed
+1javadoc30master passed
_ Patch Compile Tests _
+1mvninstall236the patch passed
+1compile50the patch passed
+1javac50the patch passed
+1checkstyle64the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars255patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck744Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1findbugs210the patch passed
+1javadoc32the patch passed
_ Other Tests _
+1unit8401hbase-server in the patch passed.
+1asflicense27The patch does not generate ASF License warnings.
11209
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux f7580162efcc 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/testptch/patchprocess/precommit/personality/provided.sh
git revisionmaster / 438bf32
mavenversion: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java1.8.0_181
findbugsv3.1.11
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/5/testReport/
Max. process+thread count4767 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/5/console
Powered byApache 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
Copy Markdown
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.

.setPermission(READ_EXECUTE).build();
}

void createNonExistDir(Path path) throws IOException {

Copy link
Copy Markdown
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
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec59Docker mode activated.
_ Prechecks _
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall243master passed
+1compile50master passed
+1checkstyle64master passed
+1shadedjars279branch has no errors when building our shaded downstream artifacts.
+1findbugs139master passed
+1javadoc31master passed
_ Patch Compile Tests _
+1mvninstall243the patch passed
+1compile51the patch passed
+1javac51the patch passed
+1checkstyle67the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars263patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck761Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1findbugs235the patch passed
+1javadoc32the patch passed
_ Other Tests _
-1unit17465hbase-server in the patch failed.
+1asflicense24The patch does not generate ASF License warnings.
20319
ReasonTests
Failed junit testshadoop.hbase.client.TestCloneSnapshotFromClientNormal
hadoop.hbase.master.procedure.TestProcedurePriority
hadoop.hbase.client.TestSnapshotDFSTemporaryDirectory
hadoop.hbase.client.TestSnapshotTemporaryDirectory
hadoop.hbase.master.procedure.TestSCPWithReplicas
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 6be10d6a8bdf 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/testptch/patchprocess/precommit/personality/provided.sh
git revisionmaster / 74731c2
mavenversion: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java1.8.0_181
findbugsv3.1.11
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/6/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/6/testReport/
Max. process+thread count4880 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/6/console
Powered byApache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec215Docker mode activated.
_ Prechecks _
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall341master passed
+1compile70master passed
+1checkstyle87master passed
+1shadedjars353branch has no errors when building our shaded downstream artifacts.
+1findbugs276master passed
+1javadoc41master passed
_ Patch Compile Tests _
+1mvninstall314the patch passed
+1compile71the patch passed
+1javac71the patch passed
+1checkstyle93the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars346patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck967Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1findbugs290the patch passed
+1javadoc42the patch passed
_ Other Tests _
-1unit18510hbase-server in the patch failed.
+1asflicense36The patch does not generate ASF License warnings.
22453
ReasonTests
Failed junit testshadoop.hbase.client.TestSnapshotTemporaryDirectory
hadoop.hbase.namespace.TestNamespaceAuditor
hadoop.hbase.replication.TestReplicationEndpoint
hadoop.hbase.master.procedure.TestSCPWithReplicas
hadoop.hbase.client.TestCloneSnapshotFromClientNormal
hadoop.hbase.client.TestSnapshotDFSTemporaryDirectory
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 1293c6599f82 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/testptch/patchprocess/precommit/personality/provided.sh
git revisionmaster / cc38de1
mavenversion: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java1.8.0_181
findbugsv3.1.11
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/7/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/7/testReport/
Max. process+thread count5073 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/7/console
Powered byApache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@mymeiyi
mymeiyiforce-pushed the hdfs-acl-table-attribute branch from e6ed33b to 531c054CompareJuly 17, 2019 02:16
@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec62Docker mode activated.
_ Prechecks _
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall268master passed
+1compile54master passed
+1checkstyle71master passed
+1shadedjars286branch has no errors when building our shaded downstream artifacts.
+1findbugs210master passed
+1javadoc33master passed
_ Patch Compile Tests _
+1mvninstall256the patch passed
+1compile56the patch passed
+1javac56the patch passed
+1checkstyle70the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars260patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck778Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1findbugs217the patch passed
+1javadoc34the patch passed
_ Other Tests _
-1unit15652hbase-server in the patch failed.
+1asflicense28The patch does not generate ASF License warnings.
18650
ReasonTests
Failed junit testshadoop.hbase.client.TestSnapshotDFSTemporaryDirectory
hadoop.hbase.client.TestSnapshotTemporaryDirectory
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux dfd668c73449 4.4.0-137-generic #163-Ubuntu SMP Mon Sep 24 13:14:43 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/testptch/patchprocess/precommit/personality/provided.sh
git revisionmaster / 72e58a8
mavenversion: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java1.8.0_181
findbugsv3.1.11
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/8/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/8/testReport/
Max. process+thread count4977 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/8/console
Powered byApache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec169Docker mode activated.
_ Prechecks _
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall321master passed
+1compile70master passed
+1checkstyle90master passed
+1shadedjars341branch has no errors when building our shaded downstream artifacts.
+1findbugs278master passed
+1javadoc41master passed
_ Patch Compile Tests _
+1mvninstall314the patch passed
+1compile71the patch passed
+1javac71the patch passed
+1checkstyle87the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars349patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck940Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1findbugs279the patch passed
+1javadoc42the patch passed
_ Other Tests _
-1unit16104hbase-server in the patch failed.
+1asflicense28The patch does not generate ASF License warnings.
19912
ReasonTests
Failed junit testshadoop.hbase.client.TestCloneSnapshotFromClientNormal
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 1f801a1d1c6a 4.4.0-143-generic #169-Ubuntu SMP Thu Feb 7 07:56:38 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/testptch/patchprocess/precommit/personality/provided.sh
git revisionmaster / 00075ea
mavenversion: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java1.8.0_181
findbugsv3.1.11
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/9/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/9/testReport/
Max. process+thread count4742 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/9/console
Powered byApache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec70Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
-1mvninstall11root in master failed.
-1compile54hbase-server in master failed.
+1checkstyle70master passed
+1shadedjars264branch has no errors when building our shaded downstream artifacts.
+1javadoc31master passed
0spotbugs330Used deprecated FindBugs config; considering switching to SpotBugs.
-1findbugs34hbase-server in master failed.
_ Patch Compile Tests _
-1mvninstall12root in the patch failed.
-1compile36hbase-server in the patch failed.
-1javac36hbase-server in the patch failed.
+1checkstyle71the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars260patch has no errors when building our shaded downstream artifacts.
-1hadoopcheck10The patch causes 10 errors with Hadoop v2.8.5.
-1hadoopcheck20The patch causes 10 errors with Hadoop v2.9.2.
-1hadoopcheck29The patch causes 10 errors with Hadoop v3.1.2.
+1javadoc30the patch passed
-1findbugs33hbase-server in the patch failed.
_ Other Tests _
-1unit37hbase-server in the patch failed.
+1asflicense10The patch does not generate ASF License warnings.
1108
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux dd56b1d9c7ed 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / c9293b0
Default Java1.8.0_181
mvninstallhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/branch-mvninstall-root.txt
compilehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/branch-compile-hbase-server.txt
findbugshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/branch-findbugs-hbase-server.txt
mvninstallhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-mvninstall-root.txt
compilehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-compile-hbase-server.txt
javachttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-compile-hbase-server.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-javac-2.8.5.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-javac-2.9.2.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-javac-3.1.2.txt
findbugshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-findbugs-hbase-server.txt
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/testReport/
Max. process+thread count87 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/10/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z)
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec57Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall360master passed
+1compile70master passed
+1checkstyle101master passed
+1shadedjars367branch has no errors when building our shaded downstream artifacts.
+1javadoc45master passed
0spotbugs330Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs327master passed
_ Patch Compile Tests _
+1mvninstall336the patch passed
+1compile75the patch passed
+1javac75the patch passed
+1checkstyle98the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars360patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck1029Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc45the patch passed
+1findbugs334the patch passed
_ Other Tests _
-1unit16195hbase-server in the patch failed.
+1asflicense28The patch does not generate ASF License warnings.
20249
ReasonTests
Failed junit testshadoop.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
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux d6a1ee21af81 4.4.0-154-generic #181-Ubuntu SMP Tue Jun 25 05:29:03 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / aa9679d
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/11/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/11/testReport/
Max. process+thread count4686 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/11/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec92Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall271master passed
+1compile62master passed
+1checkstyle90master passed
+1shadedjars300branch has no errors when building our shaded downstream artifacts.
+1javadoc37master passed
0spotbugs271Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs268master passed
_ Patch Compile Tests _
+1mvninstall284the patch passed
+1compile59the patch passed
+1javac59the patch passed
+1checkstyle92the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars308patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck865Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc35the patch passed
+1findbugs283the patch passed
_ Other Tests _
-1unit1743hbase-server in the patch failed.
+1asflicense14The patch does not generate ASF License warnings.
5151
ReasonTests
Failed junit testshadoop.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
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux a9dbcf484dd1 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / 7f68591
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/13/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/13/testReport/
Max. process+thread count670 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/13/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec33Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall253master passed
+1compile51master passed
+1checkstyle72master passed
+1shadedjars269branch has no errors when building our shaded downstream artifacts.
+1javadoc35master passed
0spotbugs248Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs244master passed
_ Patch Compile Tests _
+1mvninstall251the patch passed
+1compile55the patch passed
+1javac55the patch passed
+1checkstyle75the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars272patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck768Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc32the patch passed
+1findbugs238the patch passed
_ Other Tests _
-1unit8028hbase-server in the patch failed.
+1asflicense29The patch does not generate ASF License warnings.
11020
ReasonTests
Failed junit testshadoop.hbase.regionserver.wal.TestHBaseWalOnEC
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux f5eb29de4d02 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / 9615c64
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/14/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/14/testReport/
Max. process+thread count4578 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/14/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec96Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
-1mvninstall12root in master failed.
-1compile48hbase-server in master failed.
+1checkstyle76master passed
+1shadedjars283branch has no errors when building our shaded downstream artifacts.
+1javadoc33master passed
0spotbugs353Used deprecated FindBugs config; considering switching to SpotBugs.
-1findbugs36hbase-server in master failed.
_ Patch Compile Tests _
-1mvninstall13root in the patch failed.
-1compile33hbase-server in the patch failed.
-1javac33hbase-server in the patch failed.
+1checkstyle71the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars267patch has no errors when building our shaded downstream artifacts.
-1hadoopcheck11The patch causes 10 errors with Hadoop v2.8.5.
-1hadoopcheck22The patch causes 10 errors with Hadoop v2.9.2.
-1hadoopcheck32The patch causes 10 errors with Hadoop v3.1.2.
+1javadoc32the patch passed
-1findbugs35hbase-server in the patch failed.
_ Other Tests _
-1unit35hbase-server in the patch failed.
+1asflicense8The patch does not generate ASF License warnings.
1172
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 5c6726fc0e68 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / 0e34dcb
Default Java1.8.0_181
mvninstallhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/branch-mvninstall-root.txt
compilehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/branch-compile-hbase-server.txt
findbugshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/branch-findbugs-hbase-server.txt
mvninstallhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-mvninstall-root.txt
compilehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-compile-hbase-server.txt
javachttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-compile-hbase-server.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-javac-2.8.5.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-javac-2.9.2.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-javac-3.1.2.txt
findbugshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-findbugs-hbase-server.txt
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/testReport/
Max. process+thread count87 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/15/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z)
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec62Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall319master passed
+1compile67master passed
+1checkstyle94master passed
+1shadedjars342branch has no errors when building our shaded downstream artifacts.
+1javadoc43master passed
0spotbugs321Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs318master passed
_ Patch Compile Tests _
+1mvninstall316the patch passed
+1compile68the patch passed
+1javac68the patch passed
+1checkstyle93the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars343patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck954Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc43the patch passed
+1findbugs332the patch passed
_ Other Tests _
-1unit14211hbase-server in the patch failed.
+1asflicense32The patch does not generate ASF License warnings.
18018
ReasonTests
Failed junit testshadoop.hbase.client.TestSnapshotTemporaryDirectoryWithRegionReplicas
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux c5f00443193d 4.4.0-154-generic #181-Ubuntu SMP Tue Jun 25 05:29:03 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / 06f5c43
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/16/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/16/testReport/
Max. process+thread count4425 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/16/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec61Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall235master passed
+1compile50master passed
+1checkstyle71master passed
+1shadedjars289branch has no errors when building our shaded downstream artifacts.
+1javadoc35master passed
0spotbugs251Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs249master passed
_ Patch Compile Tests _
+1mvninstall261the patch passed
+1compile55the patch passed
+1javac55the patch passed
+1checkstyle74the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars271patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck754Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc32the patch passed
+1findbugs252the patch passed
_ Other Tests _
-1unit15843hbase-server in the patch failed.
+1asflicense40The patch does not generate ASF License warnings.
18891
ReasonTests
Failed junit testshadoop.hbase.client.TestSnapshotTemporaryDirectoryWithRegionReplicas
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux f4cea2145fad 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / 06f5c43
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/17/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/17/testReport/
Max. process+thread count4663 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/17/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec70Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall418master passed
+1compile85master passed
+1checkstyle96master passed
+1shadedjars368branch has no errors when building our shaded downstream artifacts.
+1javadoc41master passed
0spotbugs304Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs302master passed
_ Patch Compile Tests _
+1mvninstall404the patch passed
+1compile71the patch passed
+1javac71the patch passed
+1checkstyle104the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars368patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck1213Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc39the patch passed
+1findbugs287the patch passed
_ Other Tests _
-1unit17039hbase-server in the patch failed.
+1asflicense25The patch does not generate ASF License warnings.
21367
ReasonTests
Failed junit testshadoop.hbase.master.procedure.TestSCPWithReplicas
hadoop.hbase.client.TestAsyncSnapshotAdminApi
hadoop.hbase.client.TestMobSnapshotCloneIndependence
hadoop.hbase.util.TestFromClientSide3WoUnsafe
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 9b8dba2f1a4d 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / e74d501
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/18/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/18/testReport/
Max. process+thread count4716 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/18/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
0reexec49Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall308master passed
+1compile54master passed
+1checkstyle72master passed
+1shadedjars279branch has no errors when building our shaded downstream artifacts.
+1javadoc31master passed
0spotbugs234Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs231master passed
_ Patch Compile Tests _
+1mvninstall317the patch passed
+1compile55the patch passed
+1javac55the patch passed
+1checkstyle71the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars280patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck869Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc32the patch passed
+1findbugs230the patch passed
_ Other Tests _
+1unit14522hbase-server in the patch passed.
+1asflicense25The patch does not generate ASF License warnings.
17808
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 3a04234db35d 4.4.0-137-generic #163-Ubuntu SMP Mon Sep 24 13:14:43 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / 6705d4f
Default Java1.8.0_181
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/21/testReport/
Max. process+thread count4770 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/21/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec0Docker mode activated.
-1patch9#336 does not apply to master. Rebase required? Wrong Branch? See https://yetus.apache.org/documentation/in-progress/precommit-patchnames for help.
SubsystemReport/Notes
GITHUB PR#336
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/24/console
versionsgit=2.7.4
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec0Docker mode activated.
-1patch10#336 does not apply to master. Rebase required? Wrong Branch? See https://yetus.apache.org/documentation/in-progress/precommit-patchnames for help.
SubsystemReport/Notes
GITHUB PR#336
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/25/console
versionsgit=2.7.4
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
0reexec37Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall286master passed
+1compile53master passed
+1checkstyle73master passed
+1shadedjars257branch has no errors when building our shaded downstream artifacts.
+1javadoc35master passed
0spotbugs232Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs230master passed
_ Patch Compile Tests _
+1mvninstall299the patch passed
+1compile55the patch passed
+1javac55the patch passed
+1checkstyle71the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars276patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck919Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc35the patch passed
+1findbugs314the patch passed
_ Other Tests _
+1unit8361hbase-server in the patch passed.
+1asflicense24The patch does not generate ASF License warnings.
11696
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux b64fcb435f41 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / 7ebf80f
Default Java1.8.0_181
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/23/testReport/
Max. process+thread count4799 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/23/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec76Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall309master passed
+1compile57master passed
+1checkstyle79master passed
+1shadedjars277branch has no errors when building our shaded downstream artifacts.
+1javadoc35master passed
0spotbugs238Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs235master passed
_ Patch Compile Tests _
+1mvninstall321the patch passed
+1compile57the patch passed
+1javac57the patch passed
+1checkstyle75the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars274patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck1004Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc39the patch passed
+1findbugs252the patch passed
_ Other Tests _
-1unit20458hbase-server in the patch failed.
+1asflicense27The patch does not generate ASF License warnings.
23969
ReasonTests
Failed junit testshadoop.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
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 8e90c30744eb 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / 7ebf80f
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/22/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/22/testReport/
Max. process+thread count4988 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/22/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec0Docker mode activated.
-1patch10#336 does not apply to master. Rebase required? Wrong Branch? See https://yetus.apache.org/documentation/in-progress/precommit-patchnames for help.
SubsystemReport/Notes
GITHUB PR#336
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/26/console
versionsgit=2.7.4
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec0Docker mode activated.
-1patch9#336 does not apply to master. Rebase required? Wrong Branch? See https://yetus.apache.org/documentation/in-progress/precommit-patchnames for help.
SubsystemReport/Notes
GITHUB PR#336
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/27/console
versionsgit=2.7.4
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@mymeiyi
mymeiyiforce-pushed the hdfs-acl-table-attribute branch from 531c054 to 5c8a26fCompareJuly 25, 2019 03:30
@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec88Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
-1mvninstall376root in master failed.
+1compile60master passed
+1checkstyle78master passed
+1shadedjars287branch has no errors when building our shaded downstream artifacts.
+1javadoc37master passed
0spotbugs247Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs244master passed
_ Patch Compile Tests _
-1mvninstall334root in the patch failed.
+1compile57the patch passed
+1javac57the patch passed
+1checkstyle74the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars293patch has no errors when building our shaded downstream artifacts.
-1hadoopcheck321The patch causes 10 errors with Hadoop v2.8.5.
-1hadoopcheck682The patch causes 10 errors with Hadoop v2.9.2.
-1hadoopcheck1061The patch causes 10 errors with Hadoop v3.1.2.
+1javadoc37the patch passed
+1findbugs250the patch passed
_ Other Tests _
-1unit19928hbase-server in the patch failed.
+1asflicense23The patch does not generate ASF License warnings.
23323
ReasonTests
Failed junit testshadoop.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
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux a691f281ad7d 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / a65e72d
Default Java1.8.0_181
mvninstallhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/branch-mvninstall-root.txt
mvninstallhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/patch-mvninstall-root.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/patch-javac-2.8.5.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/patch-javac-2.9.2.txt
hadoopcheckhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/patch-javac-3.1.2.txt
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/testReport/
Max. process+thread count5113 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/28/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec71Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall351master passed
+1compile51master passed
+1checkstyle73master passed
+1shadedjars291branch has no errors when building our shaded downstream artifacts.
+1javadoc34master passed
0spotbugs243Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs241master passed
_ Patch Compile Tests _
+1mvninstall322the patch passed
+1compile56the patch passed
+1javac56the patch passed
+1checkstyle73the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars287patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck957Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc63the patch passed
+1findbugs303the patch passed
_ Other Tests _
-1unit18710hbase-server in the patch failed.
+1asflicense41The patch does not generate ASF License warnings.
22362
ReasonTests
Failed junit testshadoop.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
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 11caeb4b6993 4.4.0-137-generic #163-Ubuntu SMP Mon Sep 24 13:14:43 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / e28afec
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/29/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/29/testReport/
Max. process+thread count5171 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/29/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec58Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall296master passed
+1compile53master passed
+1checkstyle72master passed
+1shadedjars266branch has no errors when building our shaded downstream artifacts.
+1javadoc34master passed
0spotbugs234Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs233master passed
_ Patch Compile Tests _
+1mvninstall336the patch passed
+1compile57the patch passed
+1javac57the patch passed
+1checkstyle74the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars295patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck910Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc35the patch passed
+1findbugs248the patch passed
_ Other Tests _
-1unit17153hbase-server in the patch failed.
+1asflicense40The patch does not generate ASF License warnings.
20535
ReasonTests
Failed junit testshadoop.hbase.master.procedure.TestSCPWithReplicasWithoutZKCoordinated
hadoop.hbase.namespace.TestNamespaceAuditor
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux f963c358fa61 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / b83d0c0
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/30/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/30/testReport/
Max. process+thread count4792 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/30/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec93Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall331master passed
+1compile55master passed
+1checkstyle88master passed
+1shadedjars293branch has no errors when building our shaded downstream artifacts.
+1javadoc36master passed
0spotbugs261Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs259master passed
_ Patch Compile Tests _
+1mvninstall343the patch passed
+1compile62the patch passed
+1javac62the patch passed
+1checkstyle87the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars312patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck994Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc35the patch passed
+1findbugs251the patch passed
_ Other Tests _
-1unit12957hbase-server in the patch failed.
+1asflicense25The patch does not generate ASF License warnings.
16619
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 4eb85622ec27 4.15.0-54-generic #58-Ubuntu SMP Mon Jun 24 10:55:24 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / de98fee
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/31/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/31/testReport/
Max. process+thread count4916 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/31/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec81Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall438master passed
+1compile77master passed
+1checkstyle106master passed
+1shadedjars372branch has no errors when building our shaded downstream artifacts.
+1javadoc46master passed
0spotbugs318Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs315master passed
_ Patch Compile Tests _
+1mvninstall443the patch passed
+1compile75the patch passed
+1javac75the patch passed
+1checkstyle103the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars383patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck1370Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc43the patch passed
+1findbugs327the patch passed
_ Other Tests _
-1unit17808hbase-server in the patch failed.
+1asflicense29The patch does not generate ASF License warnings.
22552
ReasonTests
Failed junit testshadoop.hbase.security.access.TestSnapshotScannerHDFSAclController
hadoop.hbase.tool.TestSecureBulkLoadHFiles
hadoop.hbase.client.TestAsyncTableAdminApi
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 35ff22d5831c 4.4.0-154-generic #181-Ubuntu SMP Tue Jun 25 05:29:03 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / 747d000
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/32/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/32/testReport/
Max. process+thread count4688 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/32/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec176Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall375master passed
+1compile53master passed
+1checkstyle79master passed
+1shadedjars272branch has no errors when building our shaded downstream artifacts.
+1javadoc35master passed
0spotbugs239Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs236master passed
_ Patch Compile Tests _
+1mvninstall294the patch passed
+1compile52the patch passed
+1javac52the patch passed
+1checkstyle74the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars261patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck912Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc34the patch passed
+1findbugs254the patch passed
_ Other Tests _
-1unit14912hbase-server in the patch failed.
+1asflicense38The patch does not generate ASF License warnings.
18429
ReasonTests
Failed junit testshadoop.hbase.replication.TestSyncReplicationStandbyKillMaster
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux d0fa0305720f 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / fa77c75
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/33/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/33/testReport/
Max. process+thread count4649 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/33/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec90Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall344master passed
+1compile58master passed
+1checkstyle93master passed
+1shadedjars304branch has no errors when building our shaded downstream artifacts.
+1javadoc39master passed
0spotbugs278Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs276master passed
_ Patch Compile Tests _
+1mvninstall378the patch passed
+1compile64the patch passed
+1javac64the patch passed
+1checkstyle95the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars346patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck1212Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc37the patch passed
+1findbugs268the patch passed
_ Other Tests _
-1unit13955hbase-server in the patch failed.
+1asflicense23The patch does not generate ASF License warnings.
17999
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 551659e648cd 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / 1cb37f1
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/34/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/34/testReport/
Max. process+thread count4785 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/34/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec75Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall342master passed
+1compile56master passed
+1checkstyle75master passed
+1shadedjars292branch has no errors when building our shaded downstream artifacts.
+1javadoc34master passed
0spotbugs238Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs236master passed
_ Patch Compile Tests _
+1mvninstall320the patch passed
+1compile56the patch passed
+1javac56the patch passed
+1checkstyle76the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars260patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck1008Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc34the patch passed
+1findbugs253the patch passed
_ Other Tests _
-1unit17023hbase-server in the patch failed.
+1asflicense42The patch does not generate ASF License warnings.
20540
ReasonTests
Failed junit testshadoop.hbase.util.TestFromClientSide3WoUnsafe
hadoop.hbase.client.TestAsyncTableAdminApi3
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 7160d3203ce0 4.4.0-137-generic #163-Ubuntu SMP Mon Sep 24 13:14:43 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / cf8114a
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/35/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/35/testReport/
Max. process+thread count5129 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/35/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec83Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall302master passed
+1compile52master passed
+1checkstyle75master passed
+1shadedjars269branch has no errors when building our shaded downstream artifacts.
+1javadoc34master passed
0spotbugs241Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs239master passed
_ Patch Compile Tests _
+1mvninstall292the patch passed
+1compile56the patch passed
+1javac56the patch passed
+1checkstyle75the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars271patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck916Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc33the patch passed
+1findbugs234the patch passed
_ Other Tests _
-1unit15802hbase-server in the patch failed.
+1asflicense50The patch does not generate ASF License warnings.
19167
ReasonTests
Failed junit testshadoop.hbase.namespace.TestNamespaceAuditor
hadoop.hbase.master.procedure.TestSCPWithReplicas
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 43abb0213c24 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / 3318b4b
Default Java1.8.0_181
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/36/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/36/testReport/
Max. process+thread count4706 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/36/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
0reexec177Docker mode activated.
_ Prechecks _
+1dupname0No case conflicting files found.
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1mvninstall373master passed
+1compile70master passed
+1checkstyle93master passed
+1shadedjars342branch has no errors when building our shaded downstream artifacts.
+1javadoc44master passed
0spotbugs331Used deprecated FindBugs config; considering switching to SpotBugs.
+1findbugs329master passed
_ Patch Compile Tests _
+1mvninstall405the patch passed
+1compile71the patch passed
+1javac71the patch passed
+1checkstyle96the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars340patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck1130Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1javadoc42the patch passed
+1findbugs326the patch passed
_ Other Tests _
+1unit17436hbase-server in the patch passed.
+1asflicense33The patch does not generate ASF License warnings.
21750
SubsystemReport/Notes
DockerClient=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 Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 85df601c126c 4.4.0-143-generic #169-Ubuntu SMP Thu Feb 7 07:56:38 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-336/out/precommit/personality/provided.sh
git revisionmaster / 064f5f1
Default Java1.8.0_181
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/37/testReport/
Max. process+thread count4681 (vs. ulimit of 10000)
modulesC: hbase-server U: hbase-server
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-336/37/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@mymeiyi
mymeiyi merged commit 7294af8 into apache:masterJul 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 freeto 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

@mymeiyi@Apache-HBase@openinx