Skip to content

Commit fbabc9d

Browse files
committed
HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG
Reduce log level of CompactionProgress WARN "totalCompactingKVs=N less than currentCompactedKVs=M" to DEBUG pending resolution of the underlying issue.
1 parent 5e8a269 commit fbabc9d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,10 @@ public void complete() {
7777
*/
7878
public long getTotalCompactingKVs() {
7979
if (totalCompactingKVs < currentCompactedKVs) {
80-
LOG.warn("totalCompactingKVs={} less than currentCompactedKVs={}",
80+
if (LOG.isDebugEnabled()) {
81+
LOG.debug("totalCompactingKVs={} less than currentCompactedKVs={}",
8182
totalCompactingKVs, currentCompactedKVs);
83+
}
8284
return currentCompactedKVs;
8385
}
8486
return totalCompactingKVs;

0 commit comments

Comments
 (0)