Skip to content

HBASE-23381: Improve Logging in HBase Commons Package - #913

Closed
belugabehr wants to merge 3 commits into
apache:masterfrom
belugabehr:HBASE-23381
Closed

HBASE-23381: Improve Logging in HBase Commons Package#913
belugabehr wants to merge 3 commits into
apache:masterfrom
belugabehr:HBASE-23381

Conversation

@belugabehr

Copy link
Copy Markdown
Contributor

No description provided.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
+0 🆗reexec2m 18sDocker mode activated.
_ Prechecks _
+1 💚dupname0m 0sNo case conflicting files found.
+1 💚hbaseanti0m 0sPatch does not have any anti-patterns.
+1 💚@author0m 0sThe patch does not contain any @author tags.
-0 ⚠️test4tests0m 0sThe patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ master Compile Tests _
+1 💚mvninstall8m 52smaster passed
+1 💚compile0m 31smaster passed
+1 💚checkstyle0m 38smaster passed
+1 💚shadedjars6m 20sbranch has no errors when building our shaded downstream artifacts.
+1 💚javadoc0m 28smaster passed
+0 🆗spotbugs1m 1sUsed deprecated FindBugs config; considering switching to SpotBugs.
+1 💚findbugs0m 57smaster passed
_ Patch Compile Tests _
+1 💚mvninstall7m 19sthe patch passed
+1 💚compile0m 29sthe patch passed
+1 💚javac0m 29sthe patch passed
-1 ❌checkstyle0m 39shbase-common: The patch generated 8 new + 146 unchanged - 21 fixed = 154 total (was 167)
+1 💚whitespace0m 0sThe patch has no whitespace issues.
+1 💚shadedjars6m 32spatch has no errors when building our shaded downstream artifacts.
+1 💚hadoopcheck24m 59sPatch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 💚javadoc0m 28sthe patch passed
+1 💚findbugs1m 7sthe patch passed
_ Other Tests _
+1 💚unit3m 28shbase-common in the patch passed.
-1 ❌unit278m 52shbase-server in the patch failed.
+1 💚asflicense0m 24sThe patch does not generate ASF License warnings.
353m 55s
SubsystemReport/Notes
DockerClient=19.03.5 Server=19.03.5 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/1/artifact/out/Dockerfile
GITHUB PR#913
JIRA IssueHBASE-23381
Optional Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux ec275d2dfad3 4.15.0-70-generic #79-Ubuntu SMP Tue Nov 12 10:36:11 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-913/out/precommit/personality/provided.sh
git revisionmaster / 9c82a65
Default Java1.8.0_181
checkstylehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/1/artifact/out/diff-checkstyle-hbase-common.txt
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/1/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/1/testReport/
Max. process+thread count5257 (vs. ulimit of 10000)
modulesC: hbase-common U: hbase-common
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/1/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

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

LGTM overall, but left a general question.

if (LOG.isInfoEnabled()) {
LOG.info("Could not successfully schedule chore: " + chore.getName());
}
LOG.info("Could not successfully schedule chore: " + chore.getName());

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.

Why did you remove the check?

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.

Please use parameterized logging for the name. Also probably better to just pass the chore so we get the name and the desired period.

Copy link
Copy Markdown
ContributorAuthor

Choose a reason for hiding this comment

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

@HorizonNet The LOG.info method will check internally if the log level is set to Info before emitting a log message, no need to do it twice. Since the log message is INFO level, it's almost certainly going to be enabled when running in production so it's not worth being too clever with regards to performance so I wouldn't normally bother making it parameterized if it's not already. However, I will make that adjustment since I'll emit the chore object instead of its getName().

Also, this should be an ERROR level logging, to include the stack trace.

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.

that's a good catch. This exception handling used to also be used as a non-error condition way of disabling the chore. agree that now it should probably call more attention to itself.

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

Some feedback. Still reviewing

if (LOG.isInfoEnabled()) {
LOG.info("Could not successfully schedule chore: " + chore.getName());
}
LOG.info("Could not successfully schedule chore: " + chore.getName());

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.

Please use parameterized logging for the name. Also probably better to just pass the chore so we get the name and the desired period.

Comment threadhbase-common/src/main/java/org/apache/hadoop/hbase/ChoreService.java Outdated
printChoreServiceDetails("requestCorePoolIncrease");

if (LOG.isTraceEnabled()) {
LOG.trace("requestCorePoolIncrease");

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.

Why not leave all of this in the method and have it do a proper trace guard?

@belugabehrbelugabehrDec 10, 2019

Copy link
Copy Markdown
ContributorAuthor

Choose a reason for hiding this comment

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

Personal taste. It seems overkill to have a method just for logging. Nicer when I can just see the logging and move on with my life, not having to jump into a method. If that logging method was used 10 times and/or this method was heavily overloaded, I'd probably keep it, but for 2x, and some simple methods, it doesn't feel worth it.

Copy link
Copy Markdown
ContributorAuthor

Choose a reason for hiding this comment

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

... it also gets confusing because folks need to know who is responsible for the logging guards... internal or external to the method. I've seen it done both ways and I've seen where people then don't include guards when they should or they double-bag it.

@InterfaceAudience.Private
public class KeyValueUtil {

private static final Logger LOG = LoggerFactory.getLogger(KeyValueUtil.class);

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.

I'll have to review where we call these utility methods since we're pulling out all this logging.

Please no one merge this util someone has done that check.

Copy link
Copy Markdown
ContributorAuthor

Choose a reason for hiding this comment

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

Great. Thanks. This goes under the heading of 'log and throw'.

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.

that's well and good in principle but only works if we actually log something about the exception when it's eventually caught. also depending on the severity it might be needed if we're at risk of stacktrace optimization by the JVM and log rolling making it so we can't actually get details from here when it comes time to log the exception elsewhere.

Comment threadhbase-common/src/main/java/org/apache/hadoop/hbase/util/CommonFSUtils.java Outdated
Comment threadhbase-common/src/main/java/org/apache/hadoop/hbase/util/CommonFSUtils.java Outdated
Comment threadhbase-common/src/main/java/org/apache/hadoop/hbase/util/CommonFSUtils.java Outdated
Comment threadhbase-common/src/main/java/org/apache/hadoop/hbase/util/CommonFSUtils.java Outdated
@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
+0 🆗reexec1m 16sDocker mode activated.
_ Prechecks _
+1 💚dupname0m 1sNo case conflicting files found.
+1 💚hbaseanti0m 0sPatch does not have any anti-patterns.
+1 💚@author0m 0sThe patch does not contain any @author tags.
-0 ⚠️test4tests0m 0sThe patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ master Compile Tests _
+1 💚mvninstall6m 6smaster passed
+1 💚compile0m 23smaster passed
+1 💚checkstyle0m 32smaster passed
+1 💚shadedjars5m 4sbranch has no errors when building our shaded downstream artifacts.
+1 💚javadoc0m 21smaster passed
+0 🆗spotbugs0m 52sUsed deprecated FindBugs config; considering switching to SpotBugs.
+1 💚findbugs0m 50smaster passed
_ Patch Compile Tests _
+1 💚mvninstall5m 27sthe patch passed
+1 💚compile0m 22sthe patch passed
+1 💚javac0m 22sthe patch passed
-1 ❌checkstyle0m 29shbase-common: The patch generated 9 new + 146 unchanged - 21 fixed = 155 total (was 167)
+1 💚whitespace0m 0sThe patch has no whitespace issues.
+1 💚shadedjars5m 1spatch has no errors when building our shaded downstream artifacts.
+1 💚hadoopcheck17m 26sPatch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 💚javadoc0m 20sthe patch passed
+1 💚findbugs0m 56sthe patch passed
_ Other Tests _
+1 💚unit3m 1shbase-common in the patch passed.
-1 ❌unit277m 24shbase-server in the patch failed.
+1 💚asflicense0m 26sThe patch does not generate ASF License warnings.
332m 26s
ReasonTests
Failed junit testshadoop.hbase.client.TestFromClientSide
hadoop.hbase.client.TestFromClientSideWithCoprocessor
hadoop.hbase.io.hfile.TestCacheOnWrite
SubsystemReport/Notes
DockerClient=19.03.5 Server=19.03.5 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/2/artifact/out/Dockerfile
GITHUB PR#913
JIRA IssueHBASE-23381
Optional Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 833fe739ddfa 4.15.0-70-generic #79-Ubuntu SMP Tue Nov 12 10:36:11 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-913/out/precommit/personality/provided.sh
git revisionmaster / a580b1d
Default Java1.8.0_181
checkstylehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/2/artifact/out/diff-checkstyle-hbase-common.txt
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/2/artifact/out/patch-unit-hbase-server.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/2/testReport/
Max. process+thread count4787 (vs. ulimit of 10000)
modulesC: hbase-common U: hbase-common
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/2/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@belugabehr

Copy link
Copy Markdown
ContributorAuthor

@busbey Made the requested changes. Just need your verdict on KeyValueUtil.java log-and-throw

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
+0 🆗reexec0m 0sDocker mode activated.
-1 ❌patch0m 6s#913 does not apply to master. Rebase required? Wrong Branch? See https://yetus.apache.org/documentation/in-progress/precommit-patchnames for help.
SubsystemReport/Notes
GITHUB PR#913
JIRA IssueHBASE-23381
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/3/console
versionsgit=2.17.1
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 0sDocker mode activated.
-1 ❌patch0m 6s#913 does not apply to master. Rebase required? Wrong Branch? See https://yetus.apache.org/documentation/in-progress/precommit-patchnames for help.
SubsystemReport/Notes
GITHUB PR#913
JIRA IssueHBASE-23381
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/4/console
versionsgit=2.17.1
Powered byApache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@belugabehr

Copy link
Copy Markdown
ContributorAuthor

Sorry. I got all mixed up in my local repo. I ended up rebasing to squash my three commits and doing a force push. Sorry for the inconvenience.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
+0 🆗reexec1m 19sDocker mode activated.
_ Prechecks _
+1 💚dupname0m 0sNo case conflicting files found.
+1 💚hbaseanti0m 0sPatch does not have any anti-patterns.
+1 💚@author0m 0sThe patch does not contain any @author tags.
-0 ⚠️test4tests0m 0sThe patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ master Compile Tests _
+1 💚mvninstall5m 59smaster passed
+1 💚compile0m 22smaster passed
+1 💚checkstyle0m 31smaster passed
+1 💚shadedjars5m 2sbranch has no errors when building our shaded downstream artifacts.
+1 💚javadoc0m 22smaster passed
+0 🆗spotbugs0m 51sUsed deprecated FindBugs config; considering switching to SpotBugs.
+1 💚findbugs0m 48smaster passed
_ Patch Compile Tests _
+1 💚mvninstall5m 32sthe patch passed
+1 💚compile0m 22sthe patch passed
+1 💚javac0m 22sthe patch passed
-1 ❌checkstyle0m 28shbase-common: The patch generated 9 new + 145 unchanged - 21 fixed = 154 total (was 166)
+1 💚whitespace0m 0sThe patch has no whitespace issues.
+1 💚shadedjars5m 1spatch has no errors when building our shaded downstream artifacts.
+1 💚hadoopcheck17m 2sPatch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 💚javadoc0m 20sthe patch passed
+1 💚findbugs0m 55sthe patch passed
_ Other Tests _
+1 💚unit2m 58shbase-common in the patch passed.
+1 💚unit155m 30shbase-server in the patch passed.
+1 💚asflicense0m 26sThe patch does not generate ASF License warnings.
209m 52s
SubsystemReport/Notes
DockerClient=19.03.5 Server=19.03.5 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/5/artifact/out/Dockerfile
GITHUB PR#913
JIRA IssueHBASE-23381
Optional Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux dcf0be332d35 4.15.0-66-generic #75-Ubuntu SMP Tue Oct 1 05:24:09 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-913/out/precommit/personality/provided.sh
git revisionmaster / 85a0819
Default Java1.8.0_181
checkstylehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/5/artifact/out/diff-checkstyle-hbase-common.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/5/testReport/
Max. process+thread count4696 (vs. ulimit of 10000)
modulesC: hbase-common U: hbase-common
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/5/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
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 13sDocker mode activated.
_ Prechecks _
+1 💚dupname0m 0sNo case conflicting files found.
+1 💚hbaseanti0m 0sPatch does not have any anti-patterns.
+1 💚@author0m 0sThe patch does not contain any @author tags.
-0 ⚠️test4tests0m 0sThe patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ master Compile Tests _
+1 💚mvninstall6m 6smaster passed
+1 💚compile0m 22smaster passed
+1 💚checkstyle0m 30smaster passed
+1 💚shadedjars5m 6sbranch has no errors when building our shaded downstream artifacts.
+1 💚javadoc0m 22smaster passed
+0 🆗spotbugs0m 51sUsed deprecated FindBugs config; considering switching to SpotBugs.
+1 💚findbugs0m 49smaster passed
-0 ⚠️patch0m 57sUsed diff version of patch file. Binary files and potentially other changes not applied. Please rebase and squash commits if necessary.
_ Patch Compile Tests _
+1 💚mvninstall5m 35sthe patch passed
+1 💚compile0m 23sthe patch passed
+1 💚javac0m 23sthe patch passed
-1 ❌checkstyle0m 28shbase-common: The patch generated 9 new + 141 unchanged - 21 fixed = 150 total (was 162)
+1 💚whitespace0m 0sThe patch has no whitespace issues.
+1 💚shadedjars5m 5spatch has no errors when building our shaded downstream artifacts.
+1 💚hadoopcheck17m 38sPatch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 💚javadoc0m 20sthe patch passed
+1 💚findbugs0m 54sthe patch passed
_ Other Tests _
+1 💚unit3m 6shbase-common in the patch passed.
+1 💚unit156m 52shbase-server in the patch passed.
+1 💚asflicense0m 26sThe patch does not generate ASF License warnings.
212m 18s
SubsystemReport/Notes
DockerClient=19.03.5 Server=19.03.5 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/6/artifact/out/Dockerfile
GITHUB PR#913
JIRA IssueHBASE-23381
Optional Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 35774105f792 4.15.0-70-generic #79-Ubuntu SMP Tue Nov 12 10:36:11 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-913/out/precommit/personality/provided.sh
git revisionmaster / 923ba77
Default Java1.8.0_181
checkstylehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/6/artifact/out/diff-checkstyle-hbase-common.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/6/testReport/
Max. process+thread count4867 (vs. ulimit of 10000)
modulesC: hbase-common U: hbase-common
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/6/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@saintstack

Copy link
Copy Markdown
Contributor

@busbey Want to give a blessing here sir?

@belugabehr

Copy link
Copy Markdown
ContributorAuthor

@saintstack@busbey Just merged in latest changes and fixed conflicts. Thanks!

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
+0 🆗reexec1m 10sDocker mode activated.
_ Prechecks _
+1 💚dupname0m 0sNo case conflicting files found.
+1 💚hbaseanti0m 0sPatch does not have any anti-patterns.
+1 💚@author0m 0sThe patch does not contain any @author tags.
-0 ⚠️test4tests0m 0sThe patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ master Compile Tests _
+1 💚mvninstall6m 8smaster passed
+1 💚compile0m 21smaster passed
+1 💚checkstyle0m 29smaster passed
+1 💚shadedjars5m 5sbranch has no errors when building our shaded downstream artifacts.
+1 💚javadoc0m 21smaster passed
+0 🆗spotbugs0m 52sUsed deprecated FindBugs config; considering switching to SpotBugs.
+1 💚findbugs0m 49smaster passed
-0 ⚠️patch0m 57sUsed diff version of patch file. Binary files and potentially other changes not applied. Please rebase and squash commits if necessary.
_ Patch Compile Tests _
+1 💚mvninstall5m 32sthe patch passed
+1 💚compile0m 23sthe patch passed
+1 💚javac0m 23sthe patch passed
-1 ❌checkstyle0m 26shbase-common: The patch generated 5 new + 125 unchanged - 9 fixed = 130 total (was 134)
+1 💚whitespace0m 0sThe patch has no whitespace issues.
+1 💚shadedjars5m 22spatch has no errors when building our shaded downstream artifacts.
+1 💚hadoopcheck18m 39sPatch does not cause any errors with Hadoop 2.8.5 2.9.2 or 3.1.2.
+1 💚javadoc0m 23sthe patch passed
+1 💚findbugs1m 10sthe patch passed
_ Other Tests _
+1 💚unit1m 22shbase-common in the patch passed.
+1 💚unit103m 39shbase-server in the patch passed.
+1 💚asflicense0m 26sThe patch does not generate ASF License warnings.
158m 58s
SubsystemReport/Notes
DockerClient=19.03.5 Server=19.03.5 base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/7/artifact/out/Dockerfile
GITHUB PR#913
JIRA IssueHBASE-23381
Optional Testsdupname asflicense javac javadoc unit spotbugs findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux 0997eef65df9 4.15.0-74-generic #84-Ubuntu SMP Thu Dec 19 08:06:28 UTC 2019 x86_64 GNU/Linux
Build toolmaven
Personality/home/jenkins/jenkins-slave/workspace/HBase-PreCommit-GitHub-PR_PR-913/out/precommit/personality/provided.sh
git revisionmaster / 867b1e9
Default Java1.8.0_181
checkstylehttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/7/artifact/out/diff-checkstyle-hbase-common.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/7/testReport/
Max. process+thread count6313 (vs. ulimit of 10000)
modulesC: hbase-common U: hbase-common
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-913/7/console
versionsgit=2.11.0 maven=2018-06-17T18:33:14Z) findbugs=3.1.11
Powered byApache Yetus 0.11.1 https://yetus.apache.org

This message was automatically generated.

@Apache9

Copy link
Copy Markdown
Contributor

Is this one still active?

@Apache9Apache9 closed this Mar 4, 2021
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.

6 participants

@belugabehr@Apache-HBase@saintstack@Apache9@busbey@HorizonNet