HBASE-17780 BoundedByteBufferPool "At capacity" messages are not actionable
This commit is contained in:
parent
777fea552e
commit
14fb57cab2
|
@ -155,8 +155,8 @@ public class BoundedByteBufferPool {
|
|||
long prevState = stateRef.get();
|
||||
countOfBuffers = toCountOfBuffers(prevState);
|
||||
if (countOfBuffers >= maxToCache) {
|
||||
if (LOG.isWarnEnabled()) {
|
||||
LOG.warn("At capacity: " + countOfBuffers);
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("At capacity: " + countOfBuffers);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue