HBASE-17780 BoundedByteBufferPool "At capacity" messages are not actionable
This commit is contained in:
parent
318298047b
commit
d7666b6066
|
@ -126,7 +126,9 @@ public class BoundedByteBufferPool {
|
|||
lock.unlock();
|
||||
}
|
||||
if (!success) {
|
||||
LOG.warn("At capacity: " + this.buffers.size());
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("At capacity: " + this.buffers.size());
|
||||
}
|
||||
} else {
|
||||
if (average > this.runningAverage && average < this.maxByteBufferSizeToCache) {
|
||||
this.runningAverage = average;
|
||||
|
|
Loading…
Reference in New Issue