You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2021/08/27 17:14:43 UTC

[hbase] branch revert-3579-HBASE-25828 created (now e47e5a4)

This is an automated email from the ASF dual-hosted git repository.

apurtell pushed a change to branch revert-3579-HBASE-25828
in repository https://gitbox.apache.org/repos/asf/hbase.git.


      at e47e5a4  Revert "HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG (#3579)"

This branch includes the following new commits:

     new e47e5a4  Revert "HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG (#3579)"

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[hbase] 01/01: Revert "HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG (#3579)"

Posted by ap...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

apurtell pushed a commit to branch revert-3579-HBASE-25828
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit e47e5a4ec25b3470a4e8d2b09471252559ea18b0
Author: Andrew Purtell <ap...@apache.org>
AuthorDate: Fri Aug 27 10:14:18 2021 -0700

    Revert "HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG (#3579)"
    
    This reverts commit c770b1de0d6d4a0cf02a52e1cf640d4be9e8ec5f.
---
 .../hadoop/hbase/regionserver/compactions/CompactionProgress.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/CompactionProgress.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/CompactionProgress.java
index 942cc4f..577276e 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/CompactionProgress.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/CompactionProgress.java
@@ -77,8 +77,8 @@ public class CompactionProgress {
    */
   public long getTotalCompactingKVs() {
     if (totalCompactingKVs < currentCompactedKVs) {
-      LOG.debug("totalCompactingKVs={} less than currentCompactedKVs={}",
-        totalCompactingKVs, currentCompactedKVs);
+      LOG.warn("totalCompactingKVs={} less than currentCompactedKVs={}",
+          totalCompactingKVs, currentCompactedKVs);
       return currentCompactedKVs;
     }
     return totalCompactingKVs;