Skip to content

HBASE-8458 Support for batch version of checkAndPut() and checkAndDel… - #1320

Closed
brfrn169 wants to merge 1 commit into
apache:masterfrom
brfrn169:HBASE-8458
Closed

HBASE-8458 Support for batch version of checkAndPut() and checkAndDel…#1320
brfrn169 wants to merge 1 commit into
apache:masterfrom
brfrn169:HBASE-8458

Conversation

@brfrn169

Copy link
Copy Markdown
Member

…ete()

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@brfrn169
brfrn169 requested review from Apache9, ndimiduk and saintstack and removed request for Apache9 and ndimidukMarch 22, 2020 03:35
Comment threadhbase-client/src/main/java/org/apache/hadoop/hbase/CheckAndMutate.java Outdated
Comment threadhbase-client/src/main/java/org/apache/hadoop/hbase/CheckAndMutate.java Outdated

@saintstacksaintstack left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Looks very nice.

Comment threadhbase-client/src/main/java/org/apache/hadoop/hbase/CheckAndMutate.java Outdated
*/
public Builder qualifier(byte[] qualifier) {
this.qualifier = Preconditions.checkNotNull(qualifier, "qualifier is null. Consider using" +
" an empty byte array, or just do not call this method if you want a null qualifier");

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Helpful precondition fail message.

On fail, it comes out ok? Back to the client?

Copy link
Copy Markdown
MemberAuthor

Choose a reason for hiding this comment

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

Back to the client. On fail, it will throw NullPointerException.

* @param value the expected value
* @return the builder object
*/
public Builder ifMatches(CompareOperator compareOp, byte[] value) {

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

s/ifMatches/ifCompares/?

Copy link
Copy Markdown
MemberAuthor

Choose a reason for hiding this comment

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

We already have the same name as this method in Table$CheckAndMutateBuilder and AsyncTable$CheckAndMutateBuilder, so I named this method as the same name.

Table$CheckAndMutateBuilder#ifMatches:
https://github.com/brfrn169/hbase/blob/f66cbe1a40cd9d4cd4abd27c7ac9d1a5168b885f/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java#L346

AsyncTable$CheckAndMutateBuilder#ifMatches:
https://github.com/brfrn169/hbase/blob/f66cbe1a40cd9d4cd4abd27c7ac9d1a5168b885f/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTable.java#L269

Comment threadhbase-client/src/main/java/org/apache/hadoop/hbase/CheckAndMutate.java Outdated
regionActionBuilder.addAction(actionBuilder.setMutation(mp).build());
}
}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Argh. The old code was hard to decipher.

Comment threadhbase-protocol-shaded/src/main/protobuf/Client.proto
Comment threadhbase-protocol/src/main/protobuf/Client.proto Outdated

@brfrn169brfrn169 left a comment

Copy link
Copy Markdown
MemberAuthor

Choose a reason for hiding this comment

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

Thank you for reviewing this! @saintstack@HorizonNet

I will modify this patch and push a new patch.

*/
public Builder qualifier(byte[] qualifier) {
this.qualifier = Preconditions.checkNotNull(qualifier, "qualifier is null. Consider using" +
" an empty byte array, or just do not call this method if you want a null qualifier");

Copy link
Copy Markdown
MemberAuthor

Choose a reason for hiding this comment

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

Back to the client. On fail, it will throw NullPointerException.

Comment threadhbase-client/src/main/java/org/apache/hadoop/hbase/CheckAndMutate.java Outdated
* @param value the expected value
* @return the builder object
*/
public Builder ifMatches(CompareOperator compareOp, byte[] value) {

Copy link
Copy Markdown
MemberAuthor

Choose a reason for hiding this comment

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

We already have the same name as this method in Table$CheckAndMutateBuilder and AsyncTable$CheckAndMutateBuilder, so I named this method as the same name.

Table$CheckAndMutateBuilder#ifMatches:
https://github.com/brfrn169/hbase/blob/f66cbe1a40cd9d4cd4abd27c7ac9d1a5168b885f/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java#L346

AsyncTable$CheckAndMutateBuilder#ifMatches:
https://github.com/brfrn169/hbase/blob/f66cbe1a40cd9d4cd4abd27c7ac9d1a5168b885f/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTable.java#L269

Comment threadhbase-client/src/main/java/org/apache/hadoop/hbase/CheckAndMutate.java Outdated
* @param checkAndMutates The list of rows to apply.
* @return A {@link CompletableFuture} that wrapper the result boolean list.
*/
default CompletableFuture<List<Boolean>> checkAndMutateAll(

Copy link
Copy Markdown
MemberAuthor

Choose a reason for hiding this comment

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

In AsyncTable, for methods returning List object, we provide 2 pattern methods returning List<CompletableFuture> and CompletableFuture<List>, and the latter's name is the former's name + "All".

For example, we already provide AsyncTable#get and AsyncTable#getAll:
https://github.com/brfrn169/hbase/blob/f66cbe1a40cd9d4cd4abd27c7ac9d1a5168b885f/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTable.java#L452-L471

I did the same for checkAndMutate and checkAndMutateAll.

Comment threadhbase-protocol/src/main/protobuf/Client.proto Outdated
@brfrn169

Copy link
Copy Markdown
MemberAuthor

I added a new commit. In this commit, I did the following:

  • Deprecated the old checkAndMutate methods.
  • Add new checkAndMutate method with a single CheckAndMutate object.

@saintstack@Apache9@HorizonNet Could you please take look at this when you get a chance?

@brfrn169

brfrn169 commented Mar 30, 2020

Copy link
Copy Markdown
MemberAuthor

I fixed some conflicts and added the Javadoc for the deprecation. Also, I re-ran QA.

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
+0 🆗reexec1m 28sDocker mode activated.
_ Prechecks _
+1 💚dupname0m 1sNo case conflicting files found.
+0 🆗prototool0m 1sprototool was not available.
+1 💚hbaseanti0m 0sPatch does not have any anti-patterns.
+1 💚@author0m 0sThe patch does not contain any @author tags.
_ master Compile Tests _
+0 🆗mvndep0m 35sMaven dependency ordering for branch
+1 💚mvninstall5m 12smaster passed
+1 💚checkstyle2m 44smaster passed
+1 💚spotbugs7m 47smaster passed
_ Patch Compile Tests _
+0 🆗mvndep0m 13sMaven dependency ordering for patch
+1 💚mvninstall4m 58sthe patch passed
+1 💚checkstyle0m 11sThe patch passed checkstyle in hbase-protocol-shaded
+1 💚checkstyle0m 31shbase-client: The patch generated 0 new + 130 unchanged - 5 fixed = 130 total (was 135)
-0 ⚠️checkstyle1m 6shbase-server: The patch generated 1 new + 67 unchanged - 0 fixed = 68 total (was 67)
+1 💚checkstyle0m 43sThe patch passed checkstyle in hbase-thrift
+1 💚checkstyle0m 15sThe patch passed checkstyle in hbase-rest
+1 💚whitespace0m 0sThe patch has no whitespace issues.
+1 💚hadoopcheck10m 28sPatch does not cause any errors with Hadoop 2.10.0 or 3.1.2.
+1 💚hbaseprotoc2m 53sthe patch passed
+1 💚spotbugs9m 16sthe patch passed
_ Other Tests _
+1 💚asflicense0m 55sThe patch does not generate ASF License warnings.
57m 17s
SubsystemReport/Notes
DockerClient=19.03.8 Server=19.03.8 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/artifact/yetus-general-check/output/Dockerfile
GITHUB PR#1320
Optional Testsdupname asflicense spotbugs hadoopcheck hbaseanti checkstyle cc hbaseprotoc prototool
unameLinux e85a80b3102c 4.15.0-58-generic #64-Ubuntu SMP Tue Aug 6 11:12:41 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build toolmaven
Personalitydev-support/hbase-personality.sh
git revisionmaster / c92dd28
checkstylehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/artifact/yetus-general-check/output/diff-checkstyle-hbase-server.txt
Max. process+thread count93 (vs. ulimit of 10000)
modulesC: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/console
versionsgit=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f) spotbugs=3.1.12
Powered byApache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
+0 🆗reexec3m 41sDocker mode activated.
-0 ⚠️yetus0m 3sUnprocessed flag(s): --brief-report-file --spotbugs-strict-precheck --whitespace-eol-ignore-list --whitespace-tabs-ignore-list --quick-hadoopcheck
_ Prechecks _
_ master Compile Tests _
+0 🆗mvndep0m 34sMaven dependency ordering for branch
+1 💚mvninstall6m 1smaster passed
+1 💚compile3m 14smaster passed
+1 💚shadedjars5m 5sbranch has no errors when building our shaded downstream artifacts.
+1 💚javadoc2m 1smaster passed
_ Patch Compile Tests _
+0 🆗mvndep0m 13sMaven dependency ordering for patch
+1 💚mvninstall5m 49sthe patch passed
+1 💚compile3m 8sthe patch passed
+1 💚javac3m 8sthe patch passed
+1 💚shadedjars5m 3spatch has no errors when building our shaded downstream artifacts.
+1 💚javadoc2m 10sthe patch passed
_ Other Tests _
+1 💚unit0m 49shbase-protocol-shaded in the patch passed.
+1 💚unit1m 0shbase-client in the patch passed.
+1 💚unit203m 51shbase-server in the patch passed.
+1 💚unit3m 56shbase-thrift in the patch passed.
+1 💚unit4m 32shbase-rest in the patch passed.
253m 34s
SubsystemReport/Notes
DockerClient=19.03.8 Server=19.03.8 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/artifact/yetus-jdk8-hadoop2-check/output/Dockerfile
GITHUB PR#1320
Optional Testsjavac javadoc unit shadedjars compile
unameLinux d92c1bdeeea3 4.15.0-91-generic #92-Ubuntu SMP Fri Feb 28 11:09:48 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build toolmaven
Personalitydev-support/hbase-personality.sh
git revisionmaster / c92dd28
Default Java1.8.0_232
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/testReport/
Max. process+thread count3133 (vs. ulimit of 10000)
modulesC: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/console
versionsgit=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f)
Powered byApache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
+0 🆗reexec3m 41sDocker mode activated.
-0 ⚠️yetus0m 3sUnprocessed flag(s): --brief-report-file --spotbugs-strict-precheck --whitespace-eol-ignore-list --whitespace-tabs-ignore-list --quick-hadoopcheck
_ Prechecks _
_ master Compile Tests _
+0 🆗mvndep0m 34sMaven dependency ordering for branch
+1 💚mvninstall7m 13smaster passed
+1 💚compile4m 3smaster passed
+1 💚shadedjars6m 8sbranch has no errors when building our shaded downstream artifacts.
-0 ⚠️javadoc0m 28shbase-client in master failed.
-0 ⚠️javadoc0m 21shbase-rest in master failed.
-0 ⚠️javadoc0m 44shbase-server in master failed.
-0 ⚠️javadoc0m 59shbase-thrift in master failed.
_ Patch Compile Tests _
+0 🆗mvndep0m 14sMaven dependency ordering for patch
+1 💚mvninstall6m 53sthe patch passed
+1 💚compile3m 57sthe patch passed
+1 💚javac3m 57sthe patch passed
+1 💚shadedjars6m 29spatch has no errors when building our shaded downstream artifacts.
-0 ⚠️javadoc0m 33shbase-client in the patch failed.
-0 ⚠️javadoc0m 51shbase-server in the patch failed.
-0 ⚠️javadoc1m 13shbase-thrift in the patch failed.
-0 ⚠️javadoc0m 25shbase-rest in the patch failed.
_ Other Tests _
+1 💚unit1m 18shbase-protocol-shaded in the patch passed.
+1 💚unit1m 38shbase-client in the patch passed.
+1 💚unit203m 16shbase-server in the patch passed.
+1 💚unit3m 54shbase-thrift in the patch passed.
+1 💚unit3m 32shbase-rest in the patch passed.
261m 50s
SubsystemReport/Notes
DockerClient=19.03.8 Server=19.03.8 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/artifact/yetus-jdk11-hadoop3-check/output/Dockerfile
GITHUB PR#1320
Optional Testsjavac javadoc unit shadedjars compile
unameLinux c2f92bee6c02 4.15.0-91-generic #92-Ubuntu SMP Fri Feb 28 11:09:48 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build toolmaven
Personalitydev-support/hbase-personality.sh
git revisionmaster / c92dd28
Default Java2020-01-14
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-client.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-rest.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-server.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-thrift.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-client.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-server.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-thrift.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-rest.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/testReport/
Max. process+thread count2728 (vs. ulimit of 10000)
modulesC: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/5/console
versionsgit=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f)
Powered byApache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
+0 🆗reexec2m 4sDocker mode activated.
_ Prechecks _
+1 💚dupname0m 0sNo case conflicting files found.
+0 🆗prototool0m 1sprototool was not available.
+1 💚hbaseanti0m 0sPatch does not have any anti-patterns.
+1 💚@author0m 0sThe patch does not contain any @author tags.
_ master Compile Tests _
+0 🆗mvndep0m 32sMaven dependency ordering for branch
+1 💚mvninstall6m 6smaster passed
+1 💚checkstyle3m 4smaster passed
+1 💚spotbugs9m 12smaster passed
_ Patch Compile Tests _
+0 🆗mvndep0m 13sMaven dependency ordering for patch
+1 💚mvninstall5m 49sthe patch passed
+1 💚checkstyle0m 9sThe patch passed checkstyle in hbase-protocol-shaded
+1 💚checkstyle0m 33shbase-client: The patch generated 0 new + 130 unchanged - 5 fixed = 130 total (was 135)
-0 ⚠️checkstyle1m 18shbase-server: The patch generated 1 new + 67 unchanged - 0 fixed = 68 total (was 67)
+1 💚checkstyle0m 46sThe patch passed checkstyle in hbase-thrift
+1 💚checkstyle0m 16sThe patch passed checkstyle in hbase-rest
+1 💚whitespace0m 0sThe patch has no whitespace issues.
+1 💚hadoopcheck11m 50sPatch does not cause any errors with Hadoop 2.10.0 or 3.1.2.
+1 💚hbaseprotoc3m 0sthe patch passed
+1 💚spotbugs10m 16sthe patch passed
_ Other Tests _
+1 💚asflicense0m 57sThe patch does not generate ASF License warnings.
64m 45s
SubsystemReport/Notes
DockerClient=19.03.8 Server=19.03.8 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/artifact/yetus-general-check/output/Dockerfile
GITHUB PR#1320
Optional Testsdupname asflicense spotbugs hadoopcheck hbaseanti checkstyle cc hbaseprotoc prototool
unameLinux 7bbbfcdfe1b7 4.15.0-74-generic #84-Ubuntu SMP Thu Dec 19 08:06:28 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build toolmaven
Personalitydev-support/hbase-personality.sh
git revisionmaster / ac4e94e
checkstylehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/artifact/yetus-general-check/output/diff-checkstyle-hbase-server.txt
Max. process+thread count83 (vs. ulimit of 10000)
modulesC: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/console
versionsgit=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f) spotbugs=3.1.12
Powered byApache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
+0 🆗reexec0m 50sDocker mode activated.
-0 ⚠️yetus0m 3sUnprocessed flag(s): --brief-report-file --spotbugs-strict-precheck --whitespace-eol-ignore-list --whitespace-tabs-ignore-list --quick-hadoopcheck
_ Prechecks _
_ master Compile Tests _
+0 🆗mvndep0m 34sMaven dependency ordering for branch
+1 💚mvninstall6m 50smaster passed
+1 💚compile3m 53smaster passed
+1 💚shadedjars5m 56sbranch has no errors when building our shaded downstream artifacts.
-0 ⚠️javadoc0m 28shbase-client in master failed.
-0 ⚠️javadoc0m 21shbase-rest in master failed.
-0 ⚠️javadoc0m 43shbase-server in master failed.
-0 ⚠️javadoc0m 56shbase-thrift in master failed.
_ Patch Compile Tests _
+0 🆗mvndep0m 17sMaven dependency ordering for patch
+1 💚mvninstall6m 42sthe patch passed
+1 💚compile4m 11sthe patch passed
+1 💚javac4m 11sthe patch passed
+1 💚shadedjars5m 55spatch has no errors when building our shaded downstream artifacts.
-0 ⚠️javadoc0m 27shbase-client in the patch failed.
-0 ⚠️javadoc0m 38shbase-server in the patch failed.
-0 ⚠️javadoc0m 57shbase-thrift in the patch failed.
-0 ⚠️javadoc0m 20shbase-rest in the patch failed.
_ Other Tests _
+1 💚unit1m 2shbase-protocol-shaded in the patch passed.
+1 💚unit1m 11shbase-client in the patch passed.
+1 💚unit119m 3shbase-server in the patch passed.
+1 💚unit3m 25shbase-thrift in the patch passed.
+1 💚unit3m 25shbase-rest in the patch passed.
171m 20s
SubsystemReport/Notes
DockerClient=19.03.8 Server=19.03.8 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/artifact/yetus-jdk11-hadoop3-check/output/Dockerfile
GITHUB PR#1320
Optional Testsjavac javadoc unit shadedjars compile
unameLinux 8aa6ac579f33 4.15.0-58-generic #64-Ubuntu SMP Tue Aug 6 11:12:41 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build toolmaven
Personalitydev-support/hbase-personality.sh
git revisionmaster / ac4e94e
Default Java2020-01-14
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-client.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-rest.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-server.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-thrift.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-client.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-server.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-thrift.txt
javadochttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-rest.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/testReport/
Max. process+thread count4212 (vs. ulimit of 10000)
modulesC: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/console
versionsgit=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f)
Powered byApache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
+0 🆗reexec1m 28sDocker mode activated.
-0 ⚠️yetus0m 3sUnprocessed flag(s): --brief-report-file --spotbugs-strict-precheck --whitespace-eol-ignore-list --whitespace-tabs-ignore-list --quick-hadoopcheck
_ Prechecks _
_ master Compile Tests _
+0 🆗mvndep0m 39sMaven dependency ordering for branch
+1 💚mvninstall6m 56smaster passed
+1 💚compile3m 20smaster passed
+1 💚shadedjars5m 15sbranch has no errors when building our shaded downstream artifacts.
+1 💚javadoc2m 15smaster passed
_ Patch Compile Tests _
+0 🆗mvndep0m 13sMaven dependency ordering for patch
+1 💚mvninstall6m 26sthe patch passed
+1 💚compile3m 15sthe patch passed
+1 💚javac3m 15sthe patch passed
+1 💚shadedjars5m 18spatch has no errors when building our shaded downstream artifacts.
+1 💚javadoc2m 35sthe patch passed
_ Other Tests _
+1 💚unit0m 56shbase-protocol-shaded in the patch passed.
+1 💚unit1m 12shbase-client in the patch passed.
+1 💚unit188m 13shbase-server in the patch passed.
+1 💚unit3m 45shbase-thrift in the patch passed.
+1 💚unit4m 4shbase-rest in the patch passed.
238m 13s
SubsystemReport/Notes
DockerClient=19.03.8 Server=19.03.8 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/artifact/yetus-jdk8-hadoop2-check/output/Dockerfile
GITHUB PR#1320
Optional Testsjavac javadoc unit shadedjars compile
unameLinux 94505adcfae0 4.15.0-74-generic #84-Ubuntu SMP Thu Dec 19 08:06:28 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build toolmaven
Personalitydev-support/hbase-personality.sh
git revisionmaster / ac4e94e
Default Java1.8.0_232
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/testReport/
Max. process+thread count2940 (vs. ulimit of 10000)
modulesC: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1320/6/console
versionsgit=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f)
Powered byApache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@brfrn169

Copy link
Copy Markdown
MemberAuthor

Closing this. Will create another PR.

@brfrn169brfrn169 closed this May 2, 2020
@brfrn169brfrn169 self-assigned this Jul 18, 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.

4 participants

@brfrn169@Apache-HBase@saintstack@HorizonNet