HBASE-20554 "WALs outstanding" message from CleanerChore is noisy
This commit is contained in:
parent
cba8d2fb8d
commit
c430016cf9
|
@ -272,9 +272,13 @@ public abstract class CleanerChore<T extends FileCleanerDelegate> extends Schedu
|
|||
try {
|
||||
POOL.latchCountUp();
|
||||
if (runCleaner()) {
|
||||
LOG.debug("Cleaned all WALs under {}", oldFileDir);
|
||||
if (LOG.isTraceEnabled()) {
|
||||
LOG.trace("Cleaned all WALs under {}", oldFileDir);
|
||||
}
|
||||
} else {
|
||||
LOG.warn("WALs outstanding under {}", oldFileDir);
|
||||
if (LOG.isTraceEnabled()) {
|
||||
LOG.trace("WALs outstanding under {}", oldFileDir);
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
POOL.latchCountDown();
|
||||
|
@ -287,7 +291,9 @@ public abstract class CleanerChore<T extends FileCleanerDelegate> extends Schedu
|
|||
POOL.updatePool((long) (0.8 * getTimeUnit().toMillis(getPeriod())));
|
||||
}
|
||||
} else {
|
||||
LOG.debug("Cleaner chore disabled! Not cleaning.");
|
||||
if (LOG.isTraceEnabled()) {
|
||||
LOG.trace("Cleaner chore disabled! Not cleaning.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue