HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG (#3579)
Signed-off-by: Bharath Vissapragada <bharathv@apache.org> Signed-off-by: Duo Zhang <zhangduo@apache.org> Signed-off-by: Nick Dimiduk <ndimiduk@apache.org>
This commit is contained in:
parent
1a5b9b7ff6
commit
21e2c1b7c6
@ -77,7 +77,7 @@ public class CompactionProgress {
|
|||||||
*/
|
*/
|
||||||
public long getTotalCompactingKVs() {
|
public long getTotalCompactingKVs() {
|
||||||
if (totalCompactingKVs < currentCompactedKVs) {
|
if (totalCompactingKVs < currentCompactedKVs) {
|
||||||
LOG.warn("totalCompactingKVs={} less than currentCompactedKVs={}",
|
LOG.debug("totalCompactingKVs={} less than currentCompactedKVs={}",
|
||||||
totalCompactingKVs, currentCompactedKVs);
|
totalCompactingKVs, currentCompactedKVs);
|
||||||
return currentCompactedKVs;
|
return currentCompactedKVs;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user