You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by GitBox <gi...@apache.org> on 2021/08/12 17:08:36 UTC

[GitHub] [hbase] apurtell commented on a change in pull request #3579: HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG

apurtell commented on a change in pull request #3579:
URL: https://github.com/apache/hbase/pull/3579#discussion_r687931899



##########
File path: hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/CompactionProgress.java
##########
@@ -77,8 +77,10 @@ public void complete() {
    */
   public long getTotalCompactingKVs() {
     if (totalCompactingKVs < currentCompactedKVs) {
-      LOG.warn("totalCompactingKVs={} less than currentCompactedKVs={}",
+      if (LOG.isDebugEnabled()) {

Review comment:
       Sure, I'll remember that (and remove the check)




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@hbase.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org