HBASE-23365 Minor change MemStoreFlusher's log (#900)
Signed-off-by: GuangxuCheng <guangxucheng@gmail.com> Signed-off-by: Xu Cang <xucang@apache.org>
This commit is contained in:
parent
5e34a59d90
commit
bc8f1210ff
|
@ -280,10 +280,10 @@ class MemStoreFlusher implements FlushRequester {
|
||||||
} else {
|
} else {
|
||||||
LOG.info("Flush of region " + regionToFlush + " due to global heap pressure. " +
|
LOG.info("Flush of region " + regionToFlush + " due to global heap pressure. " +
|
||||||
"Flush type=" + flushType.toString() +
|
"Flush type=" + flushType.toString() +
|
||||||
"Total Memstore Heap size=" +
|
", Total Memstore Heap size=" +
|
||||||
TraditionalBinaryPrefix.long2String(
|
TraditionalBinaryPrefix.long2String(
|
||||||
server.getRegionServerAccounting().getGlobalMemStoreHeapSize(), "", 1) +
|
server.getRegionServerAccounting().getGlobalMemStoreHeapSize(), "", 1) +
|
||||||
"Total Memstore Off-Heap size=" +
|
", Total Memstore Off-Heap size=" +
|
||||||
TraditionalBinaryPrefix.long2String(
|
TraditionalBinaryPrefix.long2String(
|
||||||
server.getRegionServerAccounting().getGlobalMemStoreOffHeapSize(), "", 1) +
|
server.getRegionServerAccounting().getGlobalMemStoreOffHeapSize(), "", 1) +
|
||||||
", Region memstore size=" +
|
", Region memstore size=" +
|
||||||
|
|
Loading…
Reference in New Issue