HBASE-20554 "WALs outstanding" message from CleanerChore is noisy

This commit is contained in:
Andrew Purtell 2018-05-09 10:16:44 -07:00
parent 5406f63332
commit c191462ac3
1 changed files with 9 additions and 3 deletions

View File

@ -263,9 +263,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();
@ -278,7 +282,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.");
}
}
}