You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bi...@apache.org on 2019/12/05 02:14:59 UTC

[hbase] branch branch-2.1 updated: HBASE-23365 Minor change MemStoreFlusher's log (#900)

This is an automated email from the ASF dual-hosted git repository.

binlijin pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new 90975ec  HBASE-23365 Minor change MemStoreFlusher's log (#900)
90975ec is described below

commit 90975eccfecf9a782a127218269f7d88376fe3a1
Author: binlijin <bi...@gmail.com>
AuthorDate: Thu Dec 5 10:12:34 2019 +0800

    HBASE-23365 Minor change MemStoreFlusher's log (#900)
    
    Signed-off-by: GuangxuCheng  <gu...@gmail.com>
    Signed-off-by: Xu Cang <xu...@apache.org>
---
 .../java/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.java
index a53008d..522d283 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.java
@@ -279,10 +279,10 @@ class MemStoreFlusher implements FlushRequester {
       } else {
         LOG.info("Flush of region " + regionToFlush + " due to global heap pressure. " +
             "Flush type=" + flushType.toString() +
-            "Total Memstore Heap size=" +
+            ", Total Memstore Heap size=" +
             TraditionalBinaryPrefix.long2String(
                 server.getRegionServerAccounting().getGlobalMemStoreHeapSize(), "", 1) +
-            "Total Memstore Off-Heap size=" +
+            ", Total Memstore Off-Heap size=" +
             TraditionalBinaryPrefix.long2String(
                 server.getRegionServerAccounting().getGlobalMemStoreOffHeapSize(), "", 1) +
             ", Region memstore size=" +