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-22344 Documented the deprecation of public and limited private … #208

Merged
merged 1 commit into from
Jun 17, 2019

Conversation

HorizonNet
Copy link
Contributor

…APIs

@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 2 new or modified test files.
_ master Compile Tests _
0 mvndep 30 Maven dependency ordering for branch
+1 mvninstall 247 master passed
+1 compile 167 master passed
+1 checkstyle 195 master passed
+1 shadedjars 261 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 423 master passed
+1 javadoc 129 master passed
_ Patch Compile Tests _
0 mvndep 16 Maven dependency ordering for patch
+1 mvninstall 235 the patch passed
+1 compile 167 the patch passed
+1 javac 167 the patch passed
-1 checkstyle 24 hbase-common: The patch generated 2 new + 117 unchanged - 0 fixed = 119 total (was 117)
-1 checkstyle 36 hbase-client: The patch generated 20 new + 438 unchanged - 43 fixed = 458 total (was 481)
+1 checkstyle 12 The patch passed checkstyle in hbase-replication
-1 checkstyle 71 hbase-server: The patch generated 10 new + 311 unchanged - 4 fixed = 321 total (was 315)
-1 checkstyle 21 hbase-mapreduce: The patch generated 3 new + 97 unchanged - 4 fixed = 100 total (was 101)
+1 checkstyle 18 hbase-rest: The patch generated 0 new + 106 unchanged - 13 fixed = 106 total (was 119)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 263 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 492 Patch does not cause any errors with Hadoop 2.7.4 or 3.0.0.
+1 findbugs 425 the patch passed
-1 javadoc 19 hbase-common generated 9 new + 2 unchanged - 0 fixed = 11 total (was 2)
-1 javadoc 18 hbase-mapreduce generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
_ Other Tests _
+1 unit 166 hbase-common in the patch passed.
+1 unit 198 hbase-client in the patch passed.
+1 unit 24 hbase-replication in the patch passed.
-1 unit 9994 hbase-server in the patch failed.
-1 unit 1386 hbase-mapreduce in the patch failed.
+1 unit 393 hbase-rest in the patch passed.
+1 asflicense 146 The patch does not generate ASF License warnings.
15870
Reason Tests
Failed junit tests hadoop.hbase.regionserver.throttle.TestFlushWithThroughputController
hadoop.hbase.snapshot.TestExportSnapshotNoCluster
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-208/1/artifact/out/Dockerfile
GITHUB PR #208
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux f9e038286b4f 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 / 3f40df8
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-208/1/artifact/out/diff-checkstyle-hbase-common.txt
checkstyle https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/1/artifact/out/diff-checkstyle-hbase-client.txt
checkstyle https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/1/artifact/out/diff-checkstyle-hbase-server.txt
checkstyle https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/1/artifact/out/diff-checkstyle-hbase-mapreduce.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/1/artifact/out/diff-javadoc-javadoc-hbase-common.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/1/artifact/out/diff-javadoc-javadoc-hbase-mapreduce.txt
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/1/artifact/out/patch-unit-hbase-server.txt
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/1/artifact/out/patch-unit-hbase-mapreduce.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/1/testReport/
Max. process+thread count 5350 (vs. ulimit of 10000)
modules C: hbase-common hbase-client hbase-replication hbase-server hbase-mapreduce hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/1/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@@ -857,19 +863,31 @@ public void removeCoprocessor(String className) {
public static final HTableDescriptor NAMESPACE_TABLEDESC
= new HTableDescriptor(TableDescriptorBuilder.NAMESPACE_TABLEDESC);

/**
* @deprecated since 0.94.1
Copy link
Contributor

Choose a reason for hiding this comment

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

I'm assuming there will be a follow-up task to remove anything that can be removed?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes. This ticket is based on a discussion we had on the dev list. We have some deprecations where it isn't documented in the code in what release the appropriate functionality was deprecated. There are already some removals in progress, because removing everything at once will end up in a mess.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 19 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 2 new or modified test files.
_ master Compile Tests _
0 mvndep 13 Maven dependency ordering for branch
+1 mvninstall 252 master passed
+1 compile 168 master passed
+1 checkstyle 198 master passed
+1 shadedjars 268 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 430 master passed
+1 javadoc 120 master passed
_ Patch Compile Tests _
0 mvndep 17 Maven dependency ordering for patch
+1 mvninstall 249 the patch passed
+1 compile 169 the patch passed
+1 javac 169 the patch passed
-1 checkstyle 26 hbase-common: The patch generated 2 new + 117 unchanged - 0 fixed = 119 total (was 117)
-1 checkstyle 39 hbase-client: The patch generated 18 new + 428 unchanged - 43 fixed = 446 total (was 471)
+1 checkstyle 11 The patch passed checkstyle in hbase-replication
-1 checkstyle 85 hbase-server: The patch generated 10 new + 311 unchanged - 4 fixed = 321 total (was 315)
-1 checkstyle 19 hbase-mapreduce: The patch generated 3 new + 97 unchanged - 4 fixed = 100 total (was 101)
+1 checkstyle 17 hbase-rest: The patch generated 0 new + 106 unchanged - 13 fixed = 106 total (was 119)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 278 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 509 Patch does not cause any errors with Hadoop 2.7.4 or 3.0.0.
+1 findbugs 500 the patch passed
-1 javadoc 20 hbase-common generated 9 new + 2 unchanged - 0 fixed = 11 total (was 2)
-1 javadoc 18 hbase-mapreduce generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
_ Other Tests _
+1 unit 155 hbase-common in the patch passed.
+1 unit 205 hbase-client in the patch passed.
+1 unit 24 hbase-replication in the patch passed.
+1 unit 8124 hbase-server in the patch passed.
-1 unit 931 hbase-mapreduce in the patch failed.
+1 unit 286 hbase-rest in the patch passed.
+1 asflicense 146 The patch does not generate ASF License warnings.
13554
Reason Tests
Failed junit tests hadoop.hbase.snapshot.TestExportSnapshotNoCluster
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-208/2/artifact/out/Dockerfile
GITHUB PR #208
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 41e5c88990cc 4.4.0-139-generic #165~14.04.1-Ubuntu SMP Wed Oct 31 10:55:11 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / 2c7fdb3
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-208/2/artifact/out/diff-checkstyle-hbase-common.txt
checkstyle https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/2/artifact/out/diff-checkstyle-hbase-client.txt
checkstyle https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/2/artifact/out/diff-checkstyle-hbase-server.txt
checkstyle https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/2/artifact/out/diff-checkstyle-hbase-mapreduce.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/2/artifact/out/diff-javadoc-javadoc-hbase-common.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/2/artifact/out/diff-javadoc-javadoc-hbase-mapreduce.txt
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/2/artifact/out/patch-unit-hbase-mapreduce.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/2/testReport/
Max. process+thread count 5029 (vs. ulimit of 10000)
modules C: hbase-common hbase-client hbase-replication hbase-server hbase-mapreduce hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/2/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

Copy link
Contributor

@saintstack saintstack left a comment

Choose a reason for hiding this comment

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

There is a minor issue in the below. Can fix in a follow-up.

Was there going to be a change in the refguide too to harden the text so it was clearer what our intent is (agreed w/ the ML discussion)?

Thanks for doing this.

@@ -791,7 +794,11 @@ default int getRpcTimeout() {
*
* @param rpcTimeout the timeout of each rpc request in millisecond.
*
* @deprecated Use setReadRpcTimeout or setWriteRpcTimeout instead
* @deprecated since 1.4.0 and will be removed in 3.0.0. Use {@link #setReadRpcTimeout(int)} or
Copy link
Contributor

Choose a reason for hiding this comment

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

This seems a little strange. Was there a 1.4.0 when 2.0.0 was released?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Looks like, as far as I can see in the Git history. The commit to 2.0.0 was 30d7eea and to 1.4.0 the commit was ec99838.

Copy link
Contributor

Choose a reason for hiding this comment

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

Great.

@@ -878,6 +912,10 @@ public long getReadRpcTimeout(TimeUnit unit) {
throw new UnsupportedOperationException();
}

/**
* @deprecated since 1.4.0 and will be removed in 3.0.0. Will be removed without a replacement.
Copy link
Contributor

Choose a reason for hiding this comment

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

Ditto w/ above comment.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

See comment above.

@HorizonNet
Copy link
Contributor Author

Updated the PR to fix the Checkstyle and Javadoc issues from the last build.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 51 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 2 new or modified test files.
_ master Compile Tests _
0 mvndep 24 Maven dependency ordering for branch
+1 mvninstall 246 master passed
+1 compile 161 master passed
+1 checkstyle 171 master passed
+1 shadedjars 259 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 431 master passed
+1 javadoc 116 master passed
_ Patch Compile Tests _
0 mvndep 13 Maven dependency ordering for patch
+1 mvninstall 228 the patch passed
+1 compile 156 the patch passed
+1 javac 156 the patch passed
+1 checkstyle 21 The patch passed checkstyle in hbase-common
+1 checkstyle 32 hbase-client: The patch generated 0 new + 428 unchanged - 43 fixed = 428 total (was 471)
+1 checkstyle 10 The patch passed checkstyle in hbase-replication
+1 checkstyle 68 hbase-server: The patch generated 0 new + 311 unchanged - 4 fixed = 311 total (was 315)
+1 checkstyle 17 hbase-mapreduce: The patch generated 0 new + 97 unchanged - 4 fixed = 97 total (was 101)
+1 checkstyle 15 hbase-rest: The patch generated 0 new + 106 unchanged - 13 fixed = 106 total (was 119)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 254 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 478 Patch does not cause any errors with Hadoop 2.7.4 or 3.0.0.
+1 findbugs 470 the patch passed
-1 javadoc 18 hbase-mapreduce generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
_ Other Tests _
+1 unit 168 hbase-common in the patch passed.
+1 unit 200 hbase-client in the patch passed.
+1 unit 38 hbase-replication in the patch passed.
-1 unit 16242 hbase-server in the patch failed.
+1 unit 1436 hbase-mapreduce in the patch passed.
+1 unit 521 hbase-rest in the patch passed.
+1 asflicense 191 The patch does not generate ASF License warnings.
22342
Reason Tests
Failed junit tests hadoop.hbase.client.TestFromClientSide3
hadoop.hbase.client.TestSnapshotTemporaryDirectoryWithRegionReplicas
hadoop.hbase.namespace.TestNamespaceAuditor
hadoop.hbase.client.TestFromClientSideWithCoprocessor
hadoop.hbase.client.TestAdmin1
hadoop.hbase.replication.TestReplicationSmallTestsSync
hadoop.hbase.client.TestFromClientSide
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-208/3/artifact/out/Dockerfile
GITHUB PR #208
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 603377dda675 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 / 0c0d595
maven version: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java 1.8.0_181
findbugs v3.1.11
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/3/artifact/out/diff-javadoc-javadoc-hbase-mapreduce.txt
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/3/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/3/testReport/
Max. process+thread count 5409 (vs. ulimit of 10000)
modules C: hbase-common hbase-client hbase-replication hbase-server hbase-mapreduce hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/3/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 267 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 2 new or modified test files.
_ master Compile Tests _
0 mvndep 24 Maven dependency ordering for branch
+1 mvninstall 235 master passed
+1 compile 166 master passed
+1 checkstyle 188 master passed
+1 shadedjars 261 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 384 master passed
+1 javadoc 126 master passed
_ Patch Compile Tests _
0 mvndep 15 Maven dependency ordering for patch
+1 mvninstall 237 the patch passed
+1 compile 168 the patch passed
+1 javac 168 the patch passed
+1 checkstyle 25 The patch passed checkstyle in hbase-common
+1 checkstyle 40 hbase-client: The patch generated 0 new + 428 unchanged - 43 fixed = 428 total (was 471)
+1 checkstyle 12 The patch passed checkstyle in hbase-replication
+1 checkstyle 75 hbase-server: The patch generated 0 new + 311 unchanged - 4 fixed = 311 total (was 315)
+1 checkstyle 20 hbase-mapreduce: The patch generated 0 new + 97 unchanged - 4 fixed = 97 total (was 101)
+1 checkstyle 18 hbase-rest: The patch generated 0 new + 106 unchanged - 13 fixed = 106 total (was 119)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 258 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 482 Patch does not cause any errors with Hadoop 2.7.4 or 3.0.0.
+1 findbugs 473 the patch passed
+1 javadoc 124 the patch passed
_ Other Tests _
+1 unit 168 hbase-common in the patch passed.
+1 unit 205 hbase-client in the patch passed.
+1 unit 39 hbase-replication in the patch passed.
-1 unit 15272 hbase-server in the patch failed.
+1 unit 1293 hbase-mapreduce in the patch passed.
+1 unit 504 hbase-rest in the patch passed.
+1 asflicense 189 The patch does not generate ASF License warnings.
21442
Reason Tests
Failed junit tests hadoop.hbase.master.TestAssignmentManagerMetrics
hadoop.hbase.client.TestAdmin1
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-208/4/artifact/out/Dockerfile
GITHUB PR #208
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux bf2ff56c9e26 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 / e884a25
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-208/4/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/4/testReport/
Max. process+thread count 5292 (vs. ulimit of 10000)
modules C: hbase-common hbase-client hbase-replication hbase-server hbase-mapreduce hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/4/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@HorizonNet HorizonNet force-pushed the HBASE-22344 branch 2 times, most recently from eaa401e to a05e481 Compare May 15, 2019 07:35
@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 16 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 2 new or modified test files.
_ master Compile Tests _
0 mvndep 26 Maven dependency ordering for branch
+1 mvninstall 254 master passed
+1 compile 165 master passed
+1 checkstyle 191 master passed
+1 shadedjars 276 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 381 master passed
+1 javadoc 121 master passed
_ Patch Compile Tests _
0 mvndep 13 Maven dependency ordering for patch
+1 mvninstall 250 the patch passed
+1 compile 167 the patch passed
+1 javac 167 the patch passed
+1 checkstyle 26 The patch passed checkstyle in hbase-common
+1 checkstyle 37 hbase-client: The patch generated 0 new + 413 unchanged - 43 fixed = 413 total (was 456)
+1 checkstyle 11 The patch passed checkstyle in hbase-replication
+1 checkstyle 78 hbase-server: The patch generated 0 new + 311 unchanged - 4 fixed = 311 total (was 315)
+1 checkstyle 19 hbase-mapreduce: The patch generated 0 new + 97 unchanged - 4 fixed = 97 total (was 101)
+1 checkstyle 17 hbase-rest: The patch generated 0 new + 106 unchanged - 13 fixed = 106 total (was 119)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 274 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 789 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.0.0.
+1 findbugs 470 the patch passed
+1 javadoc 121 the patch passed
_ Other Tests _
+1 unit 152 hbase-common in the patch passed.
+1 unit 187 hbase-client in the patch passed.
+1 unit 24 hbase-replication in the patch passed.
-1 unit 8605 hbase-server in the patch failed.
-1 unit 950 hbase-mapreduce in the patch failed.
+1 unit 277 hbase-rest in the patch passed.
+1 asflicense 170 The patch does not generate ASF License warnings.
14192
Reason Tests
Failed junit tests hadoop.hbase.client.TestMetaWithReplicas
hadoop.hbase.client.TestAsyncTableGetMultiThreaded
hadoop.hbase.snapshot.TestExportSnapshotNoCluster
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-208/7/artifact/out/Dockerfile
GITHUB PR #208
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux f7febe66d855 4.4.0-139-generic #165~14.04.1-Ubuntu SMP Wed Oct 31 10:55:11 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / fab2e15
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-208/7/artifact/out/patch-unit-hbase-server.txt
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/7/artifact/out/patch-unit-hbase-mapreduce.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/7/testReport/
Max. process+thread count 5181 (vs. ulimit of 10000)
modules C: hbase-common hbase-client hbase-replication hbase-server hbase-mapreduce hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/7/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@saintstack
Copy link
Contributor

Re-running checks. This is a nice patch. Lets get it in.

@HorizonNet
Copy link
Contributor Author

Re-triggered the build, because it seems that the last one got aborted.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 171 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 2 new or modified test files.
_ master Compile Tests _
0 mvndep 26 Maven dependency ordering for branch
+1 mvninstall 250 master passed
+1 compile 171 master passed
+1 checkstyle 193 master passed
+1 shadedjars 266 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 384 master passed
+1 javadoc 129 master passed
_ Patch Compile Tests _
0 mvndep 15 Maven dependency ordering for patch
+1 mvninstall 243 the patch passed
+1 compile 167 the patch passed
+1 javac 167 the patch passed
+1 checkstyle 26 The patch passed checkstyle in hbase-common
+1 checkstyle 38 hbase-client: The patch generated 0 new + 413 unchanged - 43 fixed = 413 total (was 456)
+1 checkstyle 12 The patch passed checkstyle in hbase-replication
+1 checkstyle 74 hbase-server: The patch generated 0 new + 311 unchanged - 4 fixed = 311 total (was 315)
+1 checkstyle 20 hbase-mapreduce: The patch generated 0 new + 97 unchanged - 4 fixed = 97 total (was 101)
+1 checkstyle 19 hbase-rest: The patch generated 0 new + 106 unchanged - 13 fixed = 106 total (was 119)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 271 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 758 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 456 the patch passed
+1 javadoc 125 the patch passed
_ Other Tests _
+1 unit 170 hbase-common in the patch passed.
+1 unit 202 hbase-client in the patch passed.
+1 unit 39 hbase-replication in the patch passed.
-1 unit 16584 hbase-server in the patch failed.
+1 unit 1365 hbase-mapreduce in the patch passed.
+1 unit 518 hbase-rest in the patch passed.
+1 asflicense 208 The patch does not generate ASF License warnings.
23300
Reason Tests
Failed junit tests hadoop.hbase.replication.TestReplicationDisableInactivePeer
hadoop.hbase.client.TestFromClientSide3
hadoop.hbase.client.TestSnapshotTemporaryDirectoryWithRegionReplicas
hadoop.hbase.client.TestFromClientSideWithCoprocessor
hadoop.hbase.replication.TestSyncReplicationStandbyKillMaster
hadoop.hbase.client.TestFromClientSide
hadoop.hbase.client.TestSnapshotDFSTemporaryDirectory
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-208/10/artifact/out/Dockerfile
GITHUB PR #208
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 654aff7b512e 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 / 876d2ac
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-208/10/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/10/testReport/
Max. process+thread count 5481 (vs. ulimit of 10000)
modules C: hbase-common hbase-client hbase-replication hbase-server hbase-mapreduce hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/10/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 171 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 2 new or modified test files.
_ master Compile Tests _
0 mvndep 18 Maven dependency ordering for branch
+1 mvninstall 251 master passed
+1 compile 166 master passed
+1 checkstyle 183 master passed
+1 shadedjars 263 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 406 master passed
+1 javadoc 131 master passed
_ Patch Compile Tests _
0 mvndep 14 Maven dependency ordering for patch
+1 mvninstall 236 the patch passed
+1 compile 169 the patch passed
+1 javac 169 the patch passed
+1 checkstyle 25 The patch passed checkstyle in hbase-common
-1 checkstyle 35 hbase-client: The patch generated 3 new + 217 unchanged - 19 fixed = 220 total (was 236)
+1 checkstyle 12 The patch passed checkstyle in hbase-replication
+1 checkstyle 73 hbase-server: The patch generated 0 new + 311 unchanged - 4 fixed = 311 total (was 315)
+1 checkstyle 20 hbase-mapreduce: The patch generated 0 new + 97 unchanged - 4 fixed = 97 total (was 101)
+1 checkstyle 18 hbase-rest: The patch generated 0 new + 106 unchanged - 13 fixed = 106 total (was 119)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 262 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 725 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 458 the patch passed
+1 javadoc 129 the patch passed
_ Other Tests _
+1 unit 169 hbase-common in the patch passed.
+1 unit 197 hbase-client in the patch passed.
+1 unit 38 hbase-replication in the patch passed.
-1 unit 16823 hbase-server in the patch failed.
+1 unit 1549 hbase-mapreduce in the patch passed.
+1 unit 518 hbase-rest in the patch passed.
+1 asflicense 212 The patch does not generate ASF License warnings.
23678
Reason Tests
Failed junit tests hadoop.hbase.replication.TestReplicationDisableInactivePeer
hadoop.hbase.client.TestFromClientSide3
hadoop.hbase.client.TestFromClientSideWithCoprocessor
hadoop.hbase.client.TestSnapshotFromClientWithRegionReplicas
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-208/11/artifact/out/Dockerfile
GITHUB PR #208
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 48988b165610 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 / 8db9c84
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-208/11/artifact/out/diff-checkstyle-hbase-client.txt
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/11/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/11/testReport/
Max. process+thread count 5575 (vs. ulimit of 10000)
modules C: hbase-common hbase-client hbase-replication hbase-server hbase-mapreduce hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/11/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 167 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 2 new or modified test files.
_ master Compile Tests _
0 mvndep 28 Maven dependency ordering for branch
+1 mvninstall 249 master passed
+1 compile 164 master passed
+1 checkstyle 180 master passed
+1 shadedjars 284 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 396 master passed
+1 javadoc 124 master passed
_ Patch Compile Tests _
0 mvndep 15 Maven dependency ordering for patch
+1 mvninstall 251 the patch passed
+1 compile 168 the patch passed
+1 javac 168 the patch passed
+1 checkstyle 24 The patch passed checkstyle in hbase-common
+1 checkstyle 33 hbase-client: The patch generated 0 new + 189 unchanged - 19 fixed = 189 total (was 208)
+1 checkstyle 11 The patch passed checkstyle in hbase-replication
+1 checkstyle 72 hbase-server: The patch generated 0 new + 311 unchanged - 4 fixed = 311 total (was 315)
+1 checkstyle 19 hbase-mapreduce: The patch generated 0 new + 97 unchanged - 4 fixed = 97 total (was 101)
+1 checkstyle 18 hbase-rest: The patch generated 0 new + 106 unchanged - 13 fixed = 106 total (was 119)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 281 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 766 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 441 the patch passed
+1 javadoc 129 the patch passed
_ Other Tests _
+1 unit 166 hbase-common in the patch passed.
+1 unit 195 hbase-client in the patch passed.
+1 unit 38 hbase-replication in the patch passed.
-1 unit 16712 hbase-server in the patch failed.
-1 unit 1475 hbase-mapreduce in the patch failed.
+1 unit 506 hbase-rest in the patch passed.
+1 asflicense 179 The patch does not generate ASF License warnings.
23499
Reason Tests
Failed junit tests hadoop.hbase.client.TestFromClientSide
hadoop.hbase.client.TestFromClientSideWithCoprocessor
hadoop.hbase.master.TestAssignmentManagerMetrics
hadoop.hbase.client.TestFromClientSide3
hadoop.hbase.master.procedure.TestSCPWithReplicasWithoutZKCoordinated
hadoop.hbase.snapshot.TestExportSnapshotNoCluster
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-208/12/artifact/out/Dockerfile
GITHUB PR #208
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 3b7e910aca4c 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 / 03436e6
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-208/12/artifact/out/patch-unit-hbase-server.txt
unit https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/12/artifact/out/patch-unit-hbase-mapreduce.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/12/testReport/
Max. process+thread count 5324 (vs. ulimit of 10000)
modules C: hbase-common hbase-client hbase-replication hbase-server hbase-mapreduce hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/12/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 44 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 2 new or modified test files.
_ master Compile Tests _
0 mvndep 21 Maven dependency ordering for branch
+1 mvninstall 236 master passed
+1 compile 164 master passed
+1 checkstyle 177 master passed
+1 shadedjars 263 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 365 master passed
+1 javadoc 129 master passed
_ Patch Compile Tests _
0 mvndep 14 Maven dependency ordering for patch
+1 mvninstall 235 the patch passed
+1 compile 170 the patch passed
+1 javac 170 the patch passed
+1 checkstyle 24 The patch passed checkstyle in hbase-common
+1 checkstyle 34 hbase-client: The patch generated 0 new + 189 unchanged - 19 fixed = 189 total (was 208)
+1 checkstyle 12 The patch passed checkstyle in hbase-replication
+1 checkstyle 75 hbase-server: The patch generated 0 new + 311 unchanged - 4 fixed = 311 total (was 315)
+1 checkstyle 19 hbase-mapreduce: The patch generated 0 new + 97 unchanged - 4 fixed = 97 total (was 101)
+1 checkstyle 17 hbase-rest: The patch generated 0 new + 106 unchanged - 13 fixed = 106 total (was 119)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 262 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 720 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 451 the patch passed
+1 javadoc 123 the patch passed
_ Other Tests _
+1 unit 164 hbase-common in the patch passed.
+1 unit 193 hbase-client in the patch passed.
+1 unit 38 hbase-replication in the patch passed.
-1 unit 17757 hbase-server in the patch failed.
+1 unit 1367 hbase-mapreduce in the patch passed.
+1 unit 491 hbase-rest in the patch passed.
+1 asflicense 192 The patch does not generate ASF License warnings.
24165
Reason Tests
Failed junit tests hadoop.hbase.client.TestFromClientSide
hadoop.hbase.client.TestFromClientSideWithCoprocessor
hadoop.hbase.master.TestAssignmentManagerMetrics
hadoop.hbase.client.TestSnapshotTemporaryDirectoryWithRegionReplicas
hadoop.hbase.client.TestFromClientSide3
hadoop.hbase.master.TestSplitWALManager
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-208/13/artifact/out/Dockerfile
GITHUB PR #208
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux d2dd0be65690 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 / ada772a
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-208/13/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/13/testReport/
Max. process+thread count 5269 (vs. ulimit of 10000)
modules C: hbase-common hbase-client hbase-replication hbase-server hbase-mapreduce hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/13/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 21 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 2 new or modified test files.
_ master Compile Tests _
0 mvndep 28 Maven dependency ordering for branch
+1 mvninstall 259 master passed
+1 compile 172 master passed
+1 checkstyle 187 master passed
+1 shadedjars 278 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 393 master passed
+1 javadoc 122 master passed
_ Patch Compile Tests _
0 mvndep 14 Maven dependency ordering for patch
+1 mvninstall 255 the patch passed
+1 compile 169 the patch passed
+1 javac 169 the patch passed
+1 checkstyle 25 The patch passed checkstyle in hbase-common
+1 checkstyle 35 hbase-client: The patch generated 0 new + 189 unchanged - 19 fixed = 189 total (was 208)
+1 checkstyle 11 The patch passed checkstyle in hbase-replication
+1 checkstyle 78 hbase-server: The patch generated 0 new + 311 unchanged - 4 fixed = 311 total (was 315)
+1 checkstyle 19 hbase-mapreduce: The patch generated 0 new + 97 unchanged - 4 fixed = 97 total (was 101)
+1 checkstyle 17 hbase-rest: The patch generated 0 new + 106 unchanged - 13 fixed = 106 total (was 119)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 282 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 804 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 615 the patch passed
+1 javadoc 127 the patch passed
_ Other Tests _
+1 unit 154 hbase-common in the patch passed.
+1 unit 194 hbase-client in the patch passed.
+1 unit 25 hbase-replication in the patch passed.
+1 unit 7648 hbase-server in the patch passed.
+1 unit 948 hbase-mapreduce in the patch passed.
+1 unit 289 hbase-rest in the patch passed.
+1 asflicense 167 The patch does not generate ASF License warnings.
13778
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-208/14/artifact/out/Dockerfile
GITHUB PR #208
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux efeb33edb2cd 4.4.0-139-generic #165~14.04.1-Ubuntu SMP Wed Oct 31 10:55:11 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / 1712d2b
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-208/14/testReport/
Max. process+thread count 5109 (vs. ulimit of 10000)
modules C: hbase-common hbase-client hbase-replication hbase-server hbase-mapreduce hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/14/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 174 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 2 new or modified test files.
_ master Compile Tests _
0 mvndep 32 Maven dependency ordering for branch
+1 mvninstall 250 master passed
+1 compile 171 master passed
+1 checkstyle 184 master passed
+1 shadedjars 265 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 403 master passed
+1 javadoc 128 master passed
_ Patch Compile Tests _
0 mvndep 16 Maven dependency ordering for patch
+1 mvninstall 243 the patch passed
+1 compile 169 the patch passed
+1 javac 169 the patch passed
+1 checkstyle 26 The patch passed checkstyle in hbase-common
+1 checkstyle 33 hbase-client: The patch generated 0 new + 165 unchanged - 10 fixed = 165 total (was 175)
+1 checkstyle 10 The patch passed checkstyle in hbase-replication
+1 checkstyle 75 hbase-server: The patch generated 0 new + 311 unchanged - 4 fixed = 311 total (was 315)
+1 checkstyle 20 hbase-mapreduce: The patch generated 0 new + 97 unchanged - 4 fixed = 97 total (was 101)
+1 checkstyle 17 hbase-rest: The patch generated 0 new + 106 unchanged - 13 fixed = 106 total (was 119)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 262 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 454 the patch passed
+1 javadoc 129 the patch passed
_ Other Tests _
+1 unit 168 hbase-common in the patch passed.
+1 unit 204 hbase-client in the patch passed.
+1 unit 39 hbase-replication in the patch passed.
-1 unit 16218 hbase-server in the patch failed.
+1 unit 1424 hbase-mapreduce in the patch passed.
+1 unit 517 hbase-rest in the patch passed.
+1 asflicense 207 The patch does not generate ASF License warnings.
22992
Reason Tests
Failed junit tests hadoop.hbase.client.TestFromClientSide3
hadoop.hbase.client.TestSnapshotTemporaryDirectoryWithRegionReplicas
hadoop.hbase.client.TestFromClientSideWithCoprocessor
hadoop.hbase.client.TestAsyncTableAdminApi
hadoop.hbase.client.TestFromClientSide
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-208/15/artifact/out/Dockerfile
GITHUB PR #208
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux f3aebb7d425a 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 / ed30909
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-208/15/artifact/out/patch-unit-hbase-server.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/15/testReport/
Max. process+thread count 5657 (vs. ulimit of 10000)
modules C: hbase-common hbase-client hbase-replication hbase-server hbase-mapreduce hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/15/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 46 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 2 new or modified test files.
_ master Compile Tests _
0 mvndep 41 Maven dependency ordering for branch
+1 mvninstall 265 master passed
+1 compile 148 master passed
+1 checkstyle 170 master passed
+1 shadedjars 288 branch has no errors when building our shaded downstream artifacts.
+1 findbugs 396 master passed
+1 javadoc 107 master passed
_ Patch Compile Tests _
0 mvndep 14 Maven dependency ordering for patch
+1 mvninstall 260 the patch passed
+1 compile 146 the patch passed
+1 javac 146 the patch passed
+1 checkstyle 26 The patch passed checkstyle in hbase-common
+1 checkstyle 33 hbase-client: The patch generated 0 new + 153 unchanged - 10 fixed = 153 total (was 163)
+1 checkstyle 11 The patch passed checkstyle in hbase-replication
+1 checkstyle 86 hbase-server: The patch generated 0 new + 311 unchanged - 4 fixed = 311 total (was 315)
+1 checkstyle 22 hbase-mapreduce: The patch generated 0 new + 97 unchanged - 4 fixed = 97 total (was 101)
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedjars 341 patch has no errors when building our shaded downstream artifacts.
+1 hadoopcheck 1047 Patch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 findbugs 494 the patch passed
+1 javadoc 135 the patch passed
_ Other Tests _
+1 unit 169 hbase-common in the patch passed.
+1 unit 140 hbase-client in the patch passed.
+1 unit 65 hbase-replication in the patch passed.
+1 unit 14669 hbase-server in the patch passed.
+1 unit 1428 hbase-mapreduce in the patch passed.
+1 asflicense 136 The patch does not generate ASF License warnings.
21181
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-208/16/artifact/out/Dockerfile
GITHUB PR #208
Optional Tests dupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
uname Linux 75c3949ef650 4.4.0-141-generic #167~14.04.1-Ubuntu SMP Mon Dec 10 13:20:24 UTC 2018 x86_64 GNU/Linux
Build tool maven
Personality /testptch/patchprocess/precommit/personality/provided.sh
git revision master / 5f2699e
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-208/16/testReport/
Max. process+thread count 5000 (vs. ulimit of 10000)
modules C: hbase-common hbase-client hbase-replication hbase-server hbase-mapreduce U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-208/16/console
Powered by Apache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@HorizonNet HorizonNet merged commit 5da5deb into apache:master Jun 17, 2019
@HorizonNet HorizonNet deleted the HBASE-22344 branch June 17, 2019 20:02
asfgit pushed a commit that referenced this pull request Jun 17, 2019
…APIs (#208)

Signed-off-by: stack <stack@apache.org>
asfgit pushed a commit that referenced this pull request Jun 17, 2019
…APIs (#208)

Signed-off-by: stack <stack@apache.org>
asfgit pushed a commit that referenced this pull request Jun 17, 2019
…APIs (#208)

Signed-off-by: stack <stack@apache.org>
asfgit pushed a commit that referenced this pull request Jun 17, 2019
…APIs (#208)

Signed-off-by: stack <stack@apache.org>
asfgit pushed a commit that referenced this pull request Jun 17, 2019
…APIs (#208)

Signed-off-by: stack <stack@apache.org>
asfgit pushed a commit that referenced this pull request Jun 17, 2019
…APIs (#208)

Signed-off-by: stack <stack@apache.org>
asfgit pushed a commit that referenced this pull request Jun 17, 2019
…APIs (#208)

Signed-off-by: stack <stack@apache.org>
wchevreuil pushed a commit to wchevreuil/hbase that referenced this pull request Jul 3, 2019
symat pushed a commit to symat/hbase that referenced this pull request Feb 17, 2021
…APIs (apache#208)

Signed-off-by: stack <stack@apache.org>
(cherry picked from commit 054dabb)

Change-Id: Idf6774786b69b4882ef5ece167d519b51b2c3a5c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants