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-25548 Optionally allow snapshots to preserve cluster's max file… #2923

Merged
merged 5 commits into from
Mar 10, 2021

Conversation

wchevreuil
Copy link
Contributor

…size config by setting it into table descriptor

…size config by setting it into table descriptor
@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
Contributor

@petersomogyi petersomogyi left a comment

Choose a reason for hiding this comment

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

Looks good.
Could you add a short description to reference guide?
Please fix the typo in the config name and the whitespace/checkstyle issue.

@@ -150,6 +150,9 @@
/** number of current operations running on the master */
public static final int SNAPSHOT_POOL_THREADS_DEFAULT = 1;

/** Conf key for preserving original max file size configs */
public static final String SNAPSHOT_MAX_FILE_SIZE_PRESERVE = "hbase.snpashot.max.filesize.preserve";
Copy link
Contributor

Choose a reason for hiding this comment

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

typo: snpashot

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 0m 29s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+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 23s Maven dependency ordering for branch
+1 💚 mvninstall 3m 47s master passed
+1 💚 compile 8m 41s master passed
+1 💚 checkstyle 1m 57s master passed
+0 🆗 refguide 3m 41s branch has no errors when building the reference guide. See footer for rendered docs, which you should manually inspect.
-1 ❌ spotbugs 9m 32s root in master has 1 extant spotbugs warnings.
_ Patch Compile Tests _
+0 🆗 mvndep 0m 14s Maven dependency ordering for patch
+1 💚 mvninstall 3m 29s the patch passed
+1 💚 compile 8m 29s the patch passed
+1 💚 javac 8m 29s the patch passed
+1 💚 checkstyle 2m 1s the patch passed
-0 ⚠️ whitespace 0m 0s The patch has 1 line(s) that end in whitespace. Use git apply --whitespace=fix <<patch_file>>. Refer https://git-scm.com/docs/git-apply
+0 🆗 refguide 3m 47s patch has no errors when building the reference guide. See footer for rendered docs, which you should manually inspect.
+1 💚 hadoopcheck 17m 38s Patch does not cause any errors with Hadoop 3.1.2 3.2.1 3.3.0.
+1 💚 spotbugs 2m 9s hbase-server in the patch passed.
+1 💚 spotbugs 9m 31s root generated 0 new + 0 unchanged - 1 fixed = 0 total (was 1)
_ Other Tests _
+1 💚 asflicense 0m 30s The patch does not generate ASF License warnings.
86m 8s
Subsystem Report/Notes
Docker ClientAPI=1.41 ServerAPI=1.41 base: https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/3/artifact/yetus-general-check/output/Dockerfile
GITHUB PR #2923
Optional Tests dupname asflicense javac spotbugs hadoopcheck hbaseanti checkstyle compile refguide
uname Linux 4326c3f439d2 4.15.0-60-generic #67-Ubuntu SMP Thu Aug 22 16:55:30 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 3043796
Default Java AdoptOpenJDK-1.8.0_232-b09
refguide https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/3/artifact/yetus-general-check/output/branch-site/book.html
spotbugs https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/3/artifact/yetus-general-check/output/branch-spotbugs-root-warnings.html
whitespace https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/3/artifact/yetus-general-check/output/whitespace-eol.txt
refguide https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/3/artifact/yetus-general-check/output/patch-site/book.html
Max. process+thread count 141 (vs. ulimit of 30000)
modules C: hbase-server . U: .
Console output https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/3/console
versions git=2.17.1 maven=3.6.3 spotbugs=3.1.12
Powered by Apache Yetus 0.12.0 https://yetus.apache.org

This message was automatically generated.

@petersomogyi
Copy link
Contributor

I had a thought that with this change the HBase level configuration for the region size will become table level configuration for a restored snapshot. This is a highly hidden consequence of setting hbase.snapshot.max.filesize.preserve to true. For this, I think at least a warning should be added to the reference guide.

It might be better from an operational viewpoint to add an extra flag for creating a snapshot to preserve the system's region size for a configuration and do not use this feature for every snapshot in the cluster.

@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

TableDescriptor htd =
this.master.getTableDescriptors().get(snapshotTable);
if (htd == null) {
throw new IOException("TableDescriptor missing for " + snapshotTable);
}
if(htd.getMaxFileSize()==-1 &&
Copy link
Contributor

Choose a reason for hiding this comment

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

When we have max file size already set on a table (at src cluster) we will be preserving it in snapshot's HTD anyways right. Just confirming.
Also while taking snapshot, we can pass in this new config hbase.snapshot.max.filesize.preserve = true right?
Very useful feature.

Copy link
Contributor

Choose a reason for hiding this comment

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

When we have max file size already set on a table (at src cluster) we will be preserving it in snapshot's HTD anyways right. Just confirming.

Yes, it won't be overridden by the system's region size configuration.

Also while taking snapshot, we can pass in this new config hbase.snapshot.max.filesize.preserve = true right?
Very useful feature.

The current proposal sets this at the system level so all snapshots taken will use this. I'd also like this configuration to be passed at snapshot creation.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Thanks for the reviews and suggestions @anoopsjohn @petersomogyi . I'm falling behind a bit, but will be putting it in an upcoming commit on the following days.

Copy link
Contributor

@anoopsjohn anoopsjohn Feb 18, 2021

Choose a reason for hiding this comment

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

The current proposal sets this at the system level so all snapshots taken will use this. I'd also like this configuration to be passed at snapshot creation.

Sure. +1 for handling it as follow up issue

@Apache-HBase

This comment has been minimized.

1 similar comment
@Apache-HBase

This comment has been minimized.

@Apache-HBase

This comment has been minimized.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 0m 40s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+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 33s Maven dependency ordering for branch
+1 💚 mvninstall 3m 44s master passed
+1 💚 compile 8m 42s master passed
+1 💚 checkstyle 2m 14s master passed
+0 🆗 refguide 3m 42s branch has no errors when building the reference guide. See footer for rendered docs, which you should manually inspect.
-1 ❌ spotbugs 10m 10s root in master has 1 extant spotbugs warnings.
_ Patch Compile Tests _
+0 🆗 mvndep 0m 14s Maven dependency ordering for patch
+1 💚 mvninstall 3m 53s the patch passed
+1 💚 compile 8m 46s the patch passed
+1 💚 javac 8m 46s the patch passed
+1 💚 checkstyle 2m 3s the patch passed
-0 ⚠️ whitespace 0m 0s The patch has 1 line(s) that end in whitespace. Use git apply --whitespace=fix <<patch_file>>. Refer https://git-scm.com/docs/git-apply
+0 🆗 refguide 3m 36s patch has no errors when building the reference guide. See footer for rendered docs, which you should manually inspect.
+1 💚 hadoopcheck 18m 16s Patch does not cause any errors with Hadoop 3.1.2 3.2.1 3.3.0.
+1 💚 spotbugs 2m 11s hbase-server in the patch passed.
+1 💚 spotbugs 9m 33s root generated 0 new + 0 unchanged - 1 fixed = 0 total (was 1)
_ Other Tests _
+1 💚 asflicense 0m 29s The patch does not generate ASF License warnings.
88m 49s
Subsystem Report/Notes
Docker ClientAPI=1.41 ServerAPI=1.41 base: https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/5/artifact/yetus-general-check/output/Dockerfile
GITHUB PR #2923
Optional Tests dupname asflicense javac spotbugs hadoopcheck hbaseanti checkstyle compile refguide
uname Linux 6ebe8c11c73d 4.15.0-112-generic #113-Ubuntu SMP Thu Jul 9 23:41:39 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 51a3d45
Default Java AdoptOpenJDK-1.8.0_232-b09
refguide https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/5/artifact/yetus-general-check/output/branch-site/book.html
spotbugs https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/5/artifact/yetus-general-check/output/branch-spotbugs-root-warnings.html
whitespace https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/5/artifact/yetus-general-check/output/whitespace-eol.txt
refguide https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/5/artifact/yetus-general-check/output/patch-site/book.html
Max. process+thread count 141 (vs. ulimit of 30000)
modules C: hbase-server . U: .
Console output https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/5/console
versions git=2.17.1 maven=3.6.3 spotbugs=3.1.12
Powered by Apache Yetus 0.12.0 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 0m 43s Docker mode activated.
-0 ⚠️ yetus 0m 4s 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 44s master passed
+1 💚 compile 3m 8s master passed
+1 💚 shadedjars 8m 6s branch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 3m 45s master passed
_ Patch Compile Tests _
+0 🆗 mvndep 0m 13s Maven dependency ordering for patch
+1 💚 mvninstall 4m 28s the patch passed
+1 💚 compile 3m 13s the patch passed
+1 💚 javac 3m 13s the patch passed
+1 💚 shadedjars 7m 49s patch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 3m 47s the patch passed
_ Other Tests _
+1 💚 unit 173m 53s root in the patch passed.
216m 51s
Subsystem Report/Notes
Docker ClientAPI=1.41 ServerAPI=1.41 base: https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/5/artifact/yetus-jdk11-hadoop3-check/output/Dockerfile
GITHUB PR #2923
Optional Tests javac javadoc unit shadedjars compile
uname Linux 7b89e1cb7fa2 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 / 51a3d45
Default Java AdoptOpenJDK-11.0.6+10
Test Results https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/5/testReport/
Max. process+thread count 6672 (vs. ulimit of 30000)
modules C: hbase-server . U: .
Console output https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/5/console
versions git=2.17.1 maven=3.6.3
Powered by Apache Yetus 0.12.0 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 0m 30s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 1s 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 24s Maven dependency ordering for branch
+1 💚 mvninstall 3m 45s master passed
+1 💚 compile 8m 5s master passed
+1 💚 checkstyle 2m 1s master passed
+0 🆗 refguide 3m 31s branch has no errors when building the reference guide. See footer for rendered docs, which you should manually inspect.
-1 ❌ spotbugs 8m 47s root in master has 1 extant spotbugs warnings.
_ Patch Compile Tests _
+0 🆗 mvndep 0m 22s Maven dependency ordering for patch
+1 💚 mvninstall 3m 25s the patch passed
+1 💚 compile 8m 4s the patch passed
+1 💚 cc 8m 4s the patch passed
+1 💚 javac 8m 4s the patch passed
-0 ⚠️ checkstyle 2m 1s root: The patch generated 7 new + 192 unchanged - 0 fixed = 199 total (was 192)
-0 ⚠️ rubocop 0m 11s The patch generated 4 new + 353 unchanged - 2 fixed = 357 total (was 355)
-0 ⚠️ whitespace 0m 0s The patch has 1 line(s) that end in whitespace. Use git apply --whitespace=fix <<patch_file>>. Refer https://git-scm.com/docs/git-apply
+0 🆗 refguide 3m 24s patch has no errors when building the reference guide. See footer for rendered docs, which you should manually inspect.
+1 💚 hadoopcheck 17m 15s Patch does not cause any errors with Hadoop 3.1.2 3.2.1 3.3.0.
+1 💚 hbaseprotoc 6m 13s the patch passed
+1 💚 spotbugs 3m 39s hbase-protocol-shaded in the patch passed.
+1 💚 spotbugs 1m 7s hbase-client in the patch passed.
+1 💚 spotbugs 2m 9s hbase-server in the patch passed.
+1 💚 spotbugs 8m 56s root generated 0 new + 0 unchanged - 1 fixed = 0 total (was 1)
_ Other Tests _
+1 💚 asflicense 1m 6s The patch does not generate ASF License warnings.
100m 13s
Subsystem Report/Notes
Docker ClientAPI=1.41 ServerAPI=1.41 base: https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/6/artifact/yetus-general-check/output/Dockerfile
GITHUB PR #2923
Optional Tests dupname asflicense javac spotbugs hadoopcheck hbaseanti checkstyle compile cc hbaseprotoc prototool rubocop refguide
uname Linux 47f8c45955c6 4.15.0-112-generic #113-Ubuntu SMP Thu Jul 9 23:41:39 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 51a3d45
Default Java AdoptOpenJDK-1.8.0_232-b09
refguide https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/6/artifact/yetus-general-check/output/branch-site/book.html
spotbugs https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/6/artifact/yetus-general-check/output/branch-spotbugs-root-warnings.html
checkstyle https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/6/artifact/yetus-general-check/output/diff-checkstyle-root.txt
rubocop https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/6/artifact/yetus-general-check/output/diff-patch-rubocop.txt
whitespace https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/6/artifact/yetus-general-check/output/whitespace-eol.txt
refguide https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/6/artifact/yetus-general-check/output/patch-site/book.html
Max. process+thread count 141 (vs. ulimit of 30000)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-shell . U: .
Console output https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/6/console
versions git=2.17.1 maven=3.6.3 spotbugs=3.1.12 rubocop=0.80.0
Powered by Apache Yetus 0.12.0 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 0m 29s Docker mode activated.
-0 ⚠️ yetus 0m 4s 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 12s Maven dependency ordering for branch
+1 💚 mvninstall 4m 0s master passed
+1 💚 compile 2m 49s master passed
+1 💚 shadedjars 6m 42s branch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 4m 11s master passed
_ Patch Compile Tests _
+0 🆗 mvndep 0m 13s Maven dependency ordering for patch
+1 💚 mvninstall 4m 1s the patch passed
+1 💚 compile 2m 53s the patch passed
+1 💚 javac 2m 53s the patch passed
+1 💚 shadedjars 6m 38s patch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 4m 26s the patch passed
_ Other Tests _
+1 💚 unit 171m 39s root in the patch passed.
211m 16s
Subsystem Report/Notes
Docker ClientAPI=1.41 ServerAPI=1.41 base: https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/6/artifact/yetus-jdk11-hadoop3-check/output/Dockerfile
GITHUB PR #2923
Optional Tests javac javadoc unit shadedjars compile
uname Linux 48623e4fdab8 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 / 51a3d45
Default Java AdoptOpenJDK-11.0.6+10
Test Results https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/6/testReport/
Max. process+thread count 6566 (vs. ulimit of 30000)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-shell . U: .
Console output https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/6/console
versions git=2.17.1 maven=3.6.3
Powered by Apache Yetus 0.12.0 https://yetus.apache.org

This message was automatically generated.

Copy link
Contributor

@petersomogyi petersomogyi left a comment

Choose a reason for hiding this comment

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

Great! Please fix the reported static checks. I only have 1 question on the shell help text.

hbase-shell/src/main/ruby/shell/commands/snapshot.rb Outdated Show resolved Hide resolved
@wchevreuil
Copy link
Contributor Author

wchevreuil commented Mar 8, 2021

Great! Please fix the reported static checks. I only have 1 question on the shell help text.

Had addressed the whitespace and checkstyle issues. I'm not sure about the reported spotbugs issue, it's complaining about org.apache.hadoop.hbase.rest.client.Client, which I had not even touched here. As for the rubocop, it's complaining about the size of the admin.rb:1208:30 complaint is not added by this PR. The remaining ones are related to the overall size of the snapshot method, but we need the three extra lines added here to handle the extra optional param.

@Apache-HBase
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 1m 4s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+0 🆗 prototool 0m 1s 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 23s Maven dependency ordering for branch
+1 💚 mvninstall 4m 0s master passed
+1 💚 compile 8m 33s master passed
+1 💚 checkstyle 2m 19s master passed
+0 🆗 refguide 3m 42s branch has no errors when building the reference guide. See footer for rendered docs, which you should manually inspect.
-1 ❌ spotbugs 9m 58s root in master has 1 extant spotbugs warnings.
_ Patch Compile Tests _
+0 🆗 mvndep 0m 12s Maven dependency ordering for patch
+1 💚 mvninstall 3m 49s the patch passed
+1 💚 compile 8m 27s the patch passed
+1 💚 cc 8m 27s the patch passed
+1 💚 javac 8m 27s the patch passed
-0 ⚠️ checkstyle 2m 20s root: The patch generated 1 new + 192 unchanged - 0 fixed = 193 total (was 192)
-0 ⚠️ rubocop 0m 12s The patch generated 4 new + 353 unchanged - 2 fixed = 357 total (was 355)
+1 💚 whitespace 0m 0s The patch has no whitespace issues.
+0 🆗 refguide 3m 33s patch has no errors when building the reference guide. See footer for rendered docs, which you should manually inspect.
+1 💚 hadoopcheck 19m 17s Patch does not cause any errors with Hadoop 3.1.2 3.2.1 3.3.0.
+1 💚 hbaseprotoc 6m 29s the patch passed
+1 💚 spotbugs 3m 58s hbase-protocol-shaded in the patch passed.
+1 💚 spotbugs 1m 9s hbase-client in the patch passed.
+1 💚 spotbugs 2m 18s hbase-server in the patch passed.
+1 💚 spotbugs 10m 14s root generated 0 new + 0 unchanged - 1 fixed = 0 total (was 1)
_ Other Tests _
+1 💚 asflicense 0m 57s The patch does not generate ASF License warnings.
108m 43s
Subsystem Report/Notes
Docker ClientAPI=1.41 ServerAPI=1.41 base: https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/artifact/yetus-general-check/output/Dockerfile
GITHUB PR #2923
Optional Tests dupname asflicense javac spotbugs hadoopcheck hbaseanti checkstyle compile cc hbaseprotoc prototool rubocop refguide
uname Linux ae0f5df4568d 4.15.0-136-generic #140-Ubuntu SMP Thu Jan 28 05:20:47 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 53128fe
Default Java AdoptOpenJDK-1.8.0_282-b08
refguide https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/artifact/yetus-general-check/output/branch-site/book.html
spotbugs https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/artifact/yetus-general-check/output/branch-spotbugs-root-warnings.html
checkstyle https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/artifact/yetus-general-check/output/diff-checkstyle-root.txt
rubocop https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/artifact/yetus-general-check/output/diff-patch-rubocop.txt
refguide https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/artifact/yetus-general-check/output/patch-site/book.html
Max. process+thread count 126 (vs. ulimit of 30000)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-shell . U: .
Console output https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/console
versions git=2.17.1 maven=3.6.3 spotbugs=3.1.12 rubocop=0.80.0
Powered by Apache Yetus 0.12.0 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 0m 28s 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 38s Maven dependency ordering for branch
+1 💚 mvninstall 4m 9s master passed
+1 💚 compile 2m 48s master passed
+1 💚 shadedjars 6m 46s branch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 4m 12s master passed
_ Patch Compile Tests _
+0 🆗 mvndep 0m 12s Maven dependency ordering for patch
+1 💚 mvninstall 4m 3s the patch passed
+1 💚 compile 2m 48s the patch passed
+1 💚 javac 2m 48s the patch passed
+1 💚 shadedjars 6m 41s patch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 4m 13s the patch passed
_ Other Tests _
+1 💚 unit 174m 3s root in the patch passed.
214m 23s
Subsystem Report/Notes
Docker ClientAPI=1.41 ServerAPI=1.41 base: https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/artifact/yetus-jdk11-hadoop3-check/output/Dockerfile
GITHUB PR #2923
Optional Tests javac javadoc unit shadedjars compile
uname Linux 2e46fa332e9e 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 / 53128fe
Default Java AdoptOpenJDK-11.0.10+9
Test Results https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/testReport/
Max. process+thread count 6572 (vs. ulimit of 30000)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-shell . U: .
Console output https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/console
versions git=2.17.1 maven=3.6.3
Powered by Apache Yetus 0.12.0 https://yetus.apache.org

This message was automatically generated.

@Apache-HBase
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 1m 9s 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 7s master passed
+1 💚 compile 2m 38s master passed
+1 💚 shadedjars 7m 15s branch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 3m 30s master passed
_ Patch Compile Tests _
+0 🆗 mvndep 0m 12s Maven dependency ordering for patch
+1 💚 mvninstall 3m 49s the patch passed
+1 💚 compile 2m 35s the patch passed
+1 💚 javac 2m 35s the patch passed
+1 💚 shadedjars 7m 15s patch has no errors when building our shaded downstream artifacts.
+1 💚 javadoc 3m 30s the patch passed
_ Other Tests _
+1 💚 unit 416m 24s root in the patch passed.
457m 13s
Subsystem Report/Notes
Docker ClientAPI=1.41 ServerAPI=1.41 base: https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/artifact/yetus-jdk8-hadoop3-check/output/Dockerfile
GITHUB PR #2923
Optional Tests javac javadoc unit shadedjars compile
uname Linux 6e765e4f4778 4.15.0-136-generic #140-Ubuntu SMP Thu Jan 28 05:20:47 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/hbase-personality.sh
git revision master / 53128fe
Default Java AdoptOpenJDK-1.8.0_282-b08
Test Results https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/testReport/
Max. process+thread count 3872 (vs. ulimit of 30000)
modules C: hbase-protocol-shaded hbase-client hbase-server hbase-shell . U: .
Console output https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2923/7/console
versions git=2.17.1 maven=3.6.3
Powered by Apache Yetus 0.12.0 https://yetus.apache.org

This message was automatically generated.

@wchevreuil wchevreuil merged commit 373dc77 into apache:master Mar 10, 2021
wchevreuil added a commit that referenced this pull request Mar 10, 2021
#2923)

Signed-off-by: Peter Somogyi <psomogyi@apache.org>
(cherry picked from commit 373dc77)
wchevreuil added a commit that referenced this pull request Mar 10, 2021
#2923)

Signed-off-by: Peter Somogyi <psomogyi@apache.org>
(cherry picked from commit 373dc77)
wchevreuil added a commit that referenced this pull request Mar 10, 2021
#2923)

Signed-off-by: Peter Somogyi <psomogyi@apache.org>
(cherry picked from commit 373dc77)
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