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-8458 Support for batch version of checkAndMutate() #1648

Closed
wants to merge 1 commit into from

Conversation

brfrn169
Copy link
Member

@brfrn169 brfrn169 commented May 4, 2020

No description provided.

@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.

Copy link
Member

@joshelser joshelser left a comment

Choose a reason for hiding this comment

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

So many new tests!!!

A couple of nit-picking questions on public API, but largely this looks great to me.

CompletableFuture<Boolean> checkAndMutate(CheckAndMutate checkAndMutate);

/**
* Batch version of checkAndMutate.
Copy link
Member

Choose a reason for hiding this comment

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

Probably necessary to mention the consistency/expectations on this method.

By that, I mean, each CheckAndMutate is still individually atomic. They are batched only in the sense that they are sent to a RS in one RPC, but each CheckAndMutate operation is still executed atomically (and thus, each may fail independently of others). Is that correct?

Copy link
Member Author

Choose a reason for hiding this comment

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

Yes, that's correct. I will add that to the JavaDoc of the new checkAndMutate methods for batch version. Thanks.

* @return the CheckAndMutate object
*/
public CheckAndMutate action(Row action) {
this.action = Preconditions.checkNotNull(action, "action is null");
Copy link
Member

Choose a reason for hiding this comment

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

If this only supports Put, Delete, and RowMutations, should we check that up front?

Copy link
Member Author

Choose a reason for hiding this comment

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

I will make Builder class and it will resolve this. Thanks.

}

responseBuilder.addRegionActionResult(regionActionResultBuilder.build());
quota.close();
Copy link
Member

Choose a reason for hiding this comment

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

Maybe wrap this if condition branch with a finally to ensure the quote.close() happens?

Copy link
Member Author

Choose a reason for hiding this comment

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

Yes, that's right. Thank you for pointing this out!

Comment on lines 572 to 586
@Test(expected = IllegalArgumentException.class)
public void testCheckAndMutateWithoutAction() throws Throwable {
try (Table table = createTable()) {
table.checkAndMutate(new CheckAndMutate(ROWKEY)
.ifEquals(FAMILY, Bytes.toBytes("A"), Bytes.toBytes("a")));
}
}

@Test(expected = IllegalArgumentException.class)
public void testCheckAndMutateWithoutCondition() throws Throwable {
try (Table table = createTable()) {
table.checkAndMutate(new CheckAndMutate(ROWKEY)
.action(new Put(ROWKEY).addColumn(FAMILY, Bytes.toBytes("D"), Bytes.toBytes("d"))));
}
}
Copy link
Member

Choose a reason for hiding this comment

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

In other places, we can get around this by making a Builder class in which the build() method takes the action as an argument.

e.g.

CheckAndMutate cm = new CheckAndMutate.Builder(ROWKEY)
    .ifEquals(FAMILY, Bytes.toBytes("A"), Bytes.toBytes("a"))
    .build(action);

This gets rid of some of the ambiguity of "you must call this method before you use this object". I don't feel super strongly about it, given how much code you'd have to change as a result :)

Copy link
Member

Choose a reason for hiding this comment

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

I guess this could also solve the "unsupported action" type checking, as well.

You could overload the build(..) method to accept only the concrete types you allow: Put, Increment, etc.

Copy link
Member Author

Choose a reason for hiding this comment

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

Thanks! Making Builder class is a good idea. I will make this change.

Copy link
Member Author

@brfrn169 brfrn169 left a comment

Choose a reason for hiding this comment

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

@joshelser Thank you very much for taking look at this! I will modify the PR for your review.

CompletableFuture<Boolean> checkAndMutate(CheckAndMutate checkAndMutate);

/**
* Batch version of checkAndMutate.
Copy link
Member Author

Choose a reason for hiding this comment

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

Yes, that's correct. I will add that to the JavaDoc of the new checkAndMutate methods for batch version. Thanks.

}

responseBuilder.addRegionActionResult(regionActionResultBuilder.build());
quota.close();
Copy link
Member Author

Choose a reason for hiding this comment

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

Yes, that's right. Thank you for pointing this out!

Comment on lines 572 to 586
@Test(expected = IllegalArgumentException.class)
public void testCheckAndMutateWithoutAction() throws Throwable {
try (Table table = createTable()) {
table.checkAndMutate(new CheckAndMutate(ROWKEY)
.ifEquals(FAMILY, Bytes.toBytes("A"), Bytes.toBytes("a")));
}
}

@Test(expected = IllegalArgumentException.class)
public void testCheckAndMutateWithoutCondition() throws Throwable {
try (Table table = createTable()) {
table.checkAndMutate(new CheckAndMutate(ROWKEY)
.action(new Put(ROWKEY).addColumn(FAMILY, Bytes.toBytes("D"), Bytes.toBytes("d"))));
}
}
Copy link
Member Author

Choose a reason for hiding this comment

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

Thanks! Making Builder class is a good idea. I will make this change.

* @return the CheckAndMutate object
*/
public CheckAndMutate action(Row action) {
this.action = Preconditions.checkNotNull(action, "action is null");
Copy link
Member Author

Choose a reason for hiding this comment

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

I will make Builder class and it will resolve this. Thanks.

@brfrn169
Copy link
Member Author

@joshelser I have modified the patch for your review. Could you please review it?

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@brfrn169
Copy link
Member Author

It looks like there were no test failures in the last QA but it reported the test failure. It seems like something errors other than test failures happened...

@brfrn169
Copy link
Member Author

Ping @joshelser

@joshelser
Copy link
Member

Sorry Toshi! Rough week :)

It looks like there were no test failures in the last QA but it reported the test failure. It seems like something errors other than test failures happened...

Looks like the Java process up and died. Can't tell if it was due to code you have changed though https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/3/PR_20JDK8_20Hadoop2_20Check_20Report/

Make sure to take a look at the Hadoop3 report and make sure you aren't introducing more javadoc warnings. I glanced at the one and it was the same number of warnings.

A couple of more comments, but overall looks good. @Apache9 do you have interest in giving more feedback here? @busbey on your radar for 3.0.0? @saintstack FYI just as an all-around nice guy ;)

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 0m 27s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+0 🆗 prototool 0m 0s prototool was not available.
+1 💚 hbaseanti 0m 0s Patch does not have any anti-patterns.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
_ master Compile Tests _
+0 🆗 mvndep 0m 22s Maven dependency ordering for branch
+1 💚 mvninstall 4m 3s master passed
+1 💚 checkstyle 3m 0s master passed
+1 💚 spotbugs 9m 15s master passed
_ Patch Compile Tests _
+0 🆗 mvndep 0m 13s Maven dependency ordering for patch
+1 💚 mvninstall 3m 49s the patch passed
+1 💚 checkstyle 0m 8s The patch passed checkstyle in hbase-protocol-shaded
+1 💚 checkstyle 0m 34s hbase-client: The patch generated 0 new + 130 unchanged - 5 fixed = 130 total (was 135)
-0 ⚠️ checkstyle 1m 15s hbase-server: The patch generated 1 new + 67 unchanged - 0 fixed = 68 total (was 67)
+1 💚 checkstyle 0m 49s The patch passed checkstyle in hbase-thrift
+1 💚 checkstyle 0m 15s The patch passed checkstyle in hbase-rest
+1 💚 whitespace 0m 0s The patch has no whitespace issues.
+1 💚 hadoopcheck 12m 43s Patch does not cause any errors with Hadoop 3.1.2 3.2.1.
+1 💚 hbaseprotoc 3m 25s the patch passed
+1 💚 spotbugs 11m 34s the patch passed
_ Other Tests _
+1 💚 asflicense 0m 58s The patch does not generate ASF License warnings.
62m 39s
Subsystem Report/Notes
Docker Client=19.03.10 Server=19.03.10 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/artifact/yetus-general-check/output/Dockerfile
GITHUB PR #1648
Optional Tests dupname asflicense spotbugs hadoopcheck hbaseanti checkstyle cc hbaseprotoc prototool
uname Linux 9a53f50acb96 4.15.0-101-generic #102-Ubuntu SMP Mon May 11 10:07:26 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 78fce0f
checkstyle https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/artifact/yetus-general-check/output/diff-checkstyle-hbase-server.txt
Max. process+thread count 84 (vs. ulimit of 12500)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/console
versions git=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f) spotbugs=3.1.12
Powered by Apache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 0m 31s Docker mode activated.
-0 ⚠️ yetus 0m 3s Unprocessed flag(s): --brief-report-file --spotbugs-strict-precheck --whitespace-eol-ignore-list --whitespace-tabs-ignore-list --quick-hadoopcheck
_ Prechecks _
_ master Compile Tests _
+0 🆗 mvndep 0m 23s Maven dependency ordering for branch
+1 💚 mvninstall 4m 6s master passed
+1 💚 compile 3m 29s master passed
+1 💚 shadedjars 5m 40s branch has no errors when building our shaded downstream artifacts.
-0 ⚠️ javadoc 0m 25s hbase-client in master failed.
-0 ⚠️ javadoc 0m 20s hbase-rest in master failed.
-0 ⚠️ javadoc 0m 39s hbase-server in master failed.
-0 ⚠️ javadoc 0m 48s hbase-thrift in master failed.
_ Patch Compile Tests _
+0 🆗 mvndep 0m 15s Maven dependency ordering for patch
+1 💚 mvninstall 4m 0s the patch passed
+1 💚 compile 3m 33s the patch passed
+1 💚 javac 3m 33s the patch passed
+1 💚 shadedjars 5m 40s patch has no errors when building our shaded downstream artifacts.
-0 ⚠️ javadoc 0m 26s hbase-client in the patch failed.
-0 ⚠️ javadoc 0m 40s hbase-server in the patch failed.
-0 ⚠️ javadoc 0m 50s hbase-thrift in the patch failed.
-0 ⚠️ javadoc 0m 21s hbase-rest in the patch failed.
_ Other Tests _
+1 💚 unit 0m 59s hbase-protocol-shaded in the patch passed.
+1 💚 unit 1m 11s hbase-client in the patch passed.
+1 💚 unit 130m 50s hbase-server in the patch passed.
+1 💚 unit 4m 37s hbase-thrift in the patch passed.
+1 💚 unit 3m 21s hbase-rest in the patch passed.
176m 24s
Subsystem Report/Notes
Docker Client=19.03.10 Server=19.03.10 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/artifact/yetus-jdk11-hadoop3-check/output/Dockerfile
GITHUB PR #1648
Optional Tests javac javadoc unit shadedjars compile
uname Linux 27f56933c39a 4.15.0-58-generic #64-Ubuntu SMP Tue Aug 6 11:12:41 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 78fce0f
Default Java 2020-01-14
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-client.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-rest.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-server.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-thrift.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-client.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-server.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-thrift.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-rest.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/testReport/
Max. process+thread count 4474 (vs. ulimit of 12500)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/console
versions git=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f)
Powered by Apache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 0m 27s Docker mode activated.
-0 ⚠️ yetus 0m 3s Unprocessed flag(s): --brief-report-file --spotbugs-strict-precheck --whitespace-eol-ignore-list --whitespace-tabs-ignore-list --quick-hadoopcheck
_ Prechecks _
_ master Compile Tests _
+0 🆗 mvndep 0m 22s Maven dependency ordering for branch
+1 💚 mvninstall 4m 4s master passed
+1 💚 compile 3m 12s master passed
+1 💚 shadedjars 6m 18s branch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 2m 10s master passed
_ Patch Compile Tests _
+0 🆗 mvndep 0m 15s Maven dependency ordering for patch
+1 💚 mvninstall 3m 49s the patch passed
+1 💚 compile 3m 9s the patch passed
+1 💚 javac 3m 9s the patch passed
+1 💚 shadedjars 6m 8s patch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 2m 4s the patch passed
_ Other Tests _
+1 💚 unit 0m 48s hbase-protocol-shaded in the patch passed.
+1 💚 unit 1m 13s hbase-client in the patch passed.
+1 💚 unit 193m 8s hbase-server in the patch passed.
+1 💚 unit 5m 59s hbase-thrift in the patch passed.
+1 💚 unit 4m 23s hbase-rest in the patch passed.
239m 56s
Subsystem Report/Notes
Docker Client=19.03.10 Server=19.03.10 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/artifact/yetus-jdk8-hadoop3-check/output/Dockerfile
GITHUB PR #1648
Optional Tests javac javadoc unit shadedjars compile
uname Linux 52a821c732b2 4.15.0-101-generic #102-Ubuntu SMP Mon May 11 10:07:26 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 78fce0f
Default Java 1.8.0_232
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/testReport/
Max. process+thread count 3232 (vs. ulimit of 12500)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/4/console
versions git=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f)
Powered by Apache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@brfrn169
Copy link
Member Author

It looks like the unit tests are okay this time.

Make sure to take a look at the Hadoop3 report and make sure you aren't introducing more javadoc warnings. I glanced at the one and it was the same number of warnings.

I checked the report and this patch is not introducing more javadoc warnings.

Copy link
Member

@joshelser joshelser left a comment

Choose a reason for hiding this comment

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

One final request, Toshi.

Let's have this also serve as one last call for other reviewers. If you have the cycles to put the extra interface annotations on CheckAndMutate$Builder, great. Otherwise, I'll do it on commit.

/**
* A builder class for building a CheckAndMutate object.
*/
public static final class Builder {
Copy link
Member

Choose a reason for hiding this comment

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

Best practice to have interface audience/stability here too, I think.

@brfrn169
Copy link
Member Author

brfrn169 commented Jun 2, 2020

@joshelser Thank you for reviewing this! I just modified the patch for your review. Thanks.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 2m 29s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+0 🆗 prototool 0m 0s prototool was not available.
+1 💚 hbaseanti 0m 0s Patch does not have any anti-patterns.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
_ master Compile Tests _
+0 🆗 mvndep 0m 20s Maven dependency ordering for branch
+1 💚 mvninstall 3m 59s master passed
+1 💚 checkstyle 2m 54s master passed
+1 💚 spotbugs 8m 34s master passed
_ Patch Compile Tests _
+0 🆗 mvndep 0m 12s Maven dependency ordering for patch
+1 💚 mvninstall 3m 45s the patch passed
+1 💚 checkstyle 0m 8s The patch passed checkstyle in hbase-protocol-shaded
+1 💚 checkstyle 0m 31s hbase-client: The patch generated 0 new + 130 unchanged - 5 fixed = 130 total (was 135)
-0 ⚠️ checkstyle 1m 12s hbase-server: The patch generated 1 new + 67 unchanged - 0 fixed = 68 total (was 67)
+1 💚 checkstyle 0m 45s The patch passed checkstyle in hbase-thrift
+1 💚 checkstyle 0m 15s The patch passed checkstyle in hbase-rest
+1 💚 whitespace 0m 0s The patch has no whitespace issues.
+1 💚 hadoopcheck 12m 12s Patch does not cause any errors with Hadoop 3.1.2 3.2.1.
+1 💚 hbaseprotoc 2m 52s the patch passed
+1 💚 spotbugs 9m 18s the patch passed
_ Other Tests _
+1 💚 asflicense 0m 53s The patch does not generate ASF License warnings.
58m 50s
Subsystem Report/Notes
Docker Client=19.03.11 Server=19.03.11 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/artifact/yetus-general-check/output/Dockerfile
GITHUB PR #1648
Optional Tests dupname asflicense spotbugs hadoopcheck hbaseanti checkstyle cc hbaseprotoc prototool
uname Linux 955386b0c255 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 tool maven
Personality dev-support/hbase-personality.sh
git revision master / 716702a
checkstyle https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/artifact/yetus-general-check/output/diff-checkstyle-hbase-server.txt
Max. process+thread count 84 (vs. ulimit of 12500)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/console
versions git=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f) spotbugs=3.1.12
Powered by Apache Yetus 0.11.1 https://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.

I meant to review it and still haven't. Just did a quick skim. It looks great but its playing with fire (smile). Thanks @brfrn169

return checkAndMutate(CheckAndMutate.newBuilder(row)
.ifMatches(family, qualifier, op, value)
.timeRange(timeRange)
.build(put));
Copy link
Contributor

Choose a reason for hiding this comment

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

I don't get how what is replaced maps to a checkAndMutate instance? There is no matching in previous impl?

Copy link
Member Author

Choose a reason for hiding this comment

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

Ah yes, we don't need to replace maps to a checkAndMutate instance. I will revert this change.

return checkAndMutate(CheckAndMutate.newBuilder(row)
.ifMatches(family, qualifier, op, value)
.timeRange(timeRange)
.build(delete));
Copy link
Contributor

Choose a reason for hiding this comment

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

Ditto

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 1m 33s Docker mode activated.
-0 ⚠️ yetus 0m 2s Unprocessed flag(s): --brief-report-file --spotbugs-strict-precheck --whitespace-eol-ignore-list --whitespace-tabs-ignore-list --quick-hadoopcheck
_ Prechecks _
_ master Compile Tests _
+0 🆗 mvndep 0m 22s Maven dependency ordering for branch
+1 💚 mvninstall 4m 59s master passed
+1 💚 compile 4m 12s master passed
+1 💚 shadedjars 6m 33s branch has no errors when building our shaded downstream artifacts.
-0 ⚠️ javadoc 0m 27s hbase-client in master failed.
-0 ⚠️ javadoc 0m 21s hbase-rest in master failed.
-0 ⚠️ javadoc 0m 48s hbase-server in master failed.
-0 ⚠️ javadoc 1m 1s hbase-thrift in master failed.
_ Patch Compile Tests _
+0 🆗 mvndep 0m 15s Maven dependency ordering for patch
+1 💚 mvninstall 4m 48s the patch passed
+1 💚 compile 3m 57s the patch passed
+1 💚 javac 3m 57s the patch passed
+1 💚 shadedjars 6m 39s patch has no errors when building our shaded downstream artifacts.
-0 ⚠️ javadoc 0m 32s hbase-client in the patch failed.
-0 ⚠️ javadoc 0m 49s hbase-server in the patch failed.
-0 ⚠️ javadoc 1m 12s hbase-thrift in the patch failed.
-0 ⚠️ javadoc 0m 23s hbase-rest in the patch failed.
_ Other Tests _
+1 💚 unit 1m 16s hbase-protocol-shaded in the patch passed.
+1 💚 unit 1m 33s hbase-client in the patch passed.
+1 💚 unit 213m 36s hbase-server in the patch passed.
+1 💚 unit 5m 59s hbase-thrift in the patch passed.
+1 💚 unit 3m 55s hbase-rest in the patch passed.
267m 52s
Subsystem Report/Notes
Docker Client=19.03.11 Server=19.03.11 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/artifact/yetus-jdk11-hadoop3-check/output/Dockerfile
GITHUB PR #1648
Optional Tests javac javadoc unit shadedjars compile
uname Linux e76416ddb173 4.15.0-101-generic #102-Ubuntu SMP Mon May 11 10:07:26 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 716702a
Default Java 2020-01-14
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-client.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-rest.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-server.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-thrift.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-client.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-server.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-thrift.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-rest.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/testReport/
Max. process+thread count 3130 (vs. ulimit of 12500)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/console
versions git=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f)
Powered by Apache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 1m 33s Docker mode activated.
-0 ⚠️ yetus 0m 3s Unprocessed flag(s): --brief-report-file --spotbugs-strict-precheck --whitespace-eol-ignore-list --whitespace-tabs-ignore-list --quick-hadoopcheck
_ Prechecks _
_ master Compile Tests _
+0 🆗 mvndep 0m 22s Maven dependency ordering for branch
+1 💚 mvninstall 4m 12s master passed
+1 💚 compile 3m 20s master passed
+1 💚 shadedjars 6m 13s branch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 2m 5s master passed
_ Patch Compile Tests _
+0 🆗 mvndep 0m 14s Maven dependency ordering for patch
+1 💚 mvninstall 4m 2s the patch passed
+1 💚 compile 3m 15s the patch passed
+1 💚 javac 3m 15s the patch passed
+1 💚 shadedjars 6m 10s patch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 2m 1s the patch passed
_ Other Tests _
+1 💚 unit 0m 48s hbase-protocol-shaded in the patch passed.
+1 💚 unit 1m 8s hbase-client in the patch passed.
+1 💚 unit 226m 19s hbase-server in the patch passed.
+1 💚 unit 5m 51s hbase-thrift in the patch passed.
+1 💚 unit 3m 51s hbase-rest in the patch passed.
273m 43s
Subsystem Report/Notes
Docker Client=19.03.11 Server=19.03.11 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/artifact/yetus-jdk8-hadoop3-check/output/Dockerfile
GITHUB PR #1648
Optional Tests javac javadoc unit shadedjars compile
uname Linux 4bb98e0c2895 4.15.0-101-generic #102-Ubuntu SMP Mon May 11 10:07:26 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 716702a
Default Java 1.8.0_232
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/testReport/
Max. process+thread count 2904 (vs. ulimit of 12500)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/5/console
versions git=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f)
Powered by Apache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 1m 8s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+0 🆗 prototool 0m 0s prototool was not available.
+1 💚 hbaseanti 0m 0s Patch does not have any anti-patterns.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
_ master Compile Tests _
+0 🆗 mvndep 0m 21s Maven dependency ordering for branch
+1 💚 mvninstall 3m 55s master passed
+1 💚 checkstyle 2m 53s master passed
+1 💚 spotbugs 8m 27s master passed
_ Patch Compile Tests _
+0 🆗 mvndep 0m 12s Maven dependency ordering for patch
+1 💚 mvninstall 3m 41s the patch passed
+1 💚 checkstyle 0m 9s The patch passed checkstyle in hbase-protocol-shaded
+1 💚 checkstyle 0m 30s hbase-client: The patch generated 0 new + 130 unchanged - 5 fixed = 130 total (was 135)
-0 ⚠️ checkstyle 1m 13s hbase-server: The patch generated 1 new + 67 unchanged - 0 fixed = 68 total (was 67)
+1 💚 checkstyle 0m 43s The patch passed checkstyle in hbase-thrift
+1 💚 checkstyle 0m 15s The patch passed checkstyle in hbase-rest
+1 💚 whitespace 0m 0s The patch has no whitespace issues.
+1 💚 hadoopcheck 12m 12s Patch does not cause any errors with Hadoop 3.1.2 3.2.1.
+1 💚 hbaseprotoc 2m 49s the patch passed
+1 💚 spotbugs 10m 17s the patch passed
_ Other Tests _
+1 💚 asflicense 0m 57s The patch does not generate ASF License warnings.
58m 30s
Subsystem Report/Notes
Docker Client=19.03.11 Server=19.03.11 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/artifact/yetus-general-check/output/Dockerfile
GITHUB PR #1648
Optional Tests dupname asflicense spotbugs hadoopcheck hbaseanti checkstyle cc hbaseprotoc prototool
uname Linux 77b1d71d55ff 4.15.0-101-generic #102-Ubuntu SMP Mon May 11 10:07:26 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 61a7468
checkstyle https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/artifact/yetus-general-check/output/diff-checkstyle-hbase-server.txt
Max. process+thread count 84 (vs. ulimit of 12500)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/console
versions git=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f) spotbugs=3.1.12
Powered by Apache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 0m 32s Docker mode activated.
-0 ⚠️ yetus 0m 3s Unprocessed flag(s): --brief-report-file --spotbugs-strict-precheck --whitespace-eol-ignore-list --whitespace-tabs-ignore-list --quick-hadoopcheck
_ Prechecks _
_ master Compile Tests _
+0 🆗 mvndep 0m 22s Maven dependency ordering for branch
+1 💚 mvninstall 4m 22s master passed
+1 💚 compile 3m 38s master passed
+1 💚 shadedjars 5m 51s branch has no errors when building our shaded downstream artifacts.
-0 ⚠️ javadoc 0m 26s hbase-client in master failed.
-0 ⚠️ javadoc 0m 21s hbase-rest in master failed.
-0 ⚠️ javadoc 0m 40s hbase-server in master failed.
-0 ⚠️ javadoc 0m 51s hbase-thrift in master failed.
_ Patch Compile Tests _
+0 🆗 mvndep 0m 15s Maven dependency ordering for patch
+1 💚 mvninstall 4m 4s the patch passed
+1 💚 compile 3m 38s the patch passed
+1 💚 javac 3m 38s the patch passed
+1 💚 shadedjars 6m 4s patch has no errors when building our shaded downstream artifacts.
-0 ⚠️ javadoc 0m 25s hbase-client in the patch failed.
-0 ⚠️ javadoc 0m 41s hbase-server in the patch failed.
-0 ⚠️ javadoc 0m 53s hbase-thrift in the patch failed.
-0 ⚠️ javadoc 0m 22s hbase-rest in the patch failed.
_ Other Tests _
+1 💚 unit 0m 59s hbase-protocol-shaded in the patch passed.
+1 💚 unit 1m 8s hbase-client in the patch passed.
+1 💚 unit 128m 20s hbase-server in the patch passed.
+1 💚 unit 4m 45s hbase-thrift in the patch passed.
+1 💚 unit 3m 27s hbase-rest in the patch passed.
175m 26s
Subsystem Report/Notes
Docker Client=19.03.11 Server=19.03.11 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/artifact/yetus-jdk11-hadoop3-check/output/Dockerfile
GITHUB PR #1648
Optional Tests javac javadoc unit shadedjars compile
uname Linux c83ef054f974 4.15.0-58-generic #64-Ubuntu SMP Tue Aug 6 11:12:41 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 61a7468
Default Java 2020-01-14
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-client.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-rest.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-server.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-thrift.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-client.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-server.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-thrift.txt
javadoc https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-rest.txt
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/testReport/
Max. process+thread count 4123 (vs. ulimit of 12500)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/console
versions git=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f)
Powered by Apache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 1m 17s Docker mode activated.
-0 ⚠️ yetus 0m 3s Unprocessed flag(s): --brief-report-file --spotbugs-strict-precheck --whitespace-eol-ignore-list --whitespace-tabs-ignore-list --quick-hadoopcheck
_ Prechecks _
_ master Compile Tests _
+0 🆗 mvndep 0m 27s Maven dependency ordering for branch
+1 💚 mvninstall 3m 49s master passed
+1 💚 compile 3m 3s master passed
+1 💚 shadedjars 6m 1s branch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 1m 59s master passed
_ Patch Compile Tests _
+0 🆗 mvndep 0m 13s Maven dependency ordering for patch
+1 💚 mvninstall 3m 44s the patch passed
+1 💚 compile 3m 2s the patch passed
+1 💚 javac 3m 2s the patch passed
+1 💚 shadedjars 6m 2s patch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 1m 58s the patch passed
_ Other Tests _
+1 💚 unit 0m 47s hbase-protocol-shaded in the patch passed.
+1 💚 unit 1m 5s hbase-client in the patch passed.
+1 💚 unit 197m 45s hbase-server in the patch passed.
+1 💚 unit 5m 21s hbase-thrift in the patch passed.
+1 💚 unit 3m 50s hbase-rest in the patch passed.
242m 56s
Subsystem Report/Notes
Docker Client=19.03.11 Server=19.03.11 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/artifact/yetus-jdk8-hadoop3-check/output/Dockerfile
GITHUB PR #1648
Optional Tests javac javadoc unit shadedjars compile
uname Linux 9f2f273e9369 4.15.0-101-generic #102-Ubuntu SMP Mon May 11 10:07:26 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 61a7468
Default Java 1.8.0_232
Test Results https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/testReport/
Max. process+thread count 3291 (vs. ulimit of 12500)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-thrift hbase-rest U: .
Console output https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-1648/6/console
versions git=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f)
Powered by Apache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@brfrn169
Copy link
Member Author

Ping @saintstack

@asfgit asfgit closed this in efd5a96 Jun 11, 2020
@brfrn169 brfrn169 self-assigned this Jul 18, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants