Skip to content

Commit 21e2c1b

Browse files
committed
HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG (#3579)
Signed-off-by: Bharath Vissapragada <[email protected]> Signed-off-by: Duo Zhang <[email protected]> Signed-off-by: Nick Dimiduk <[email protected]>
1 parent 1a5b9b7 commit 21e2c1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/CompactionProgress.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ public void complete() {
7777
*/
7878
public long getTotalCompactingKVs() {
7979
if (totalCompactingKVs < currentCompactedKVs) {
80-
LOG.warn("totalCompactingKVs={} less than currentCompactedKVs={}",
81-
totalCompactingKVs, currentCompactedKVs);
80+
LOG.debug("totalCompactingKVs={} less than currentCompactedKVs={}",
81+
totalCompactingKVs, currentCompactedKVs);
8282
return currentCompactedKVs;
8383
}
8484
return totalCompactingKVs;

0 commit comments

Comments
 (0)