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();
|
long prevState = stateRef.get();
|
||||||
countOfBuffers = toCountOfBuffers(prevState);
|
countOfBuffers = toCountOfBuffers(prevState);
|
||||||
if (countOfBuffers >= maxToCache) {
|
if (countOfBuffers >= maxToCache) {
|
||||||
if (LOG.isWarnEnabled()) {
|
if (LOG.isDebugEnabled()) {
|
||||||
LOG.warn("At capacity: " + countOfBuffers);
|
LOG.debug("At capacity: " + countOfBuffers);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue