You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2014/08/08 03:05:59 UTC

[2/3] git commit: HBASE-11701 Start and end of memstore flush log should be on the same level (Esteban Gutierrez)

HBASE-11701 Start and end of memstore flush log should be on the same level (Esteban Gutierrez)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/5dd2afd6
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/5dd2afd6
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/5dd2afd6

Branch: refs/heads/branch-1
Commit: 5dd2afd6708c42b9d0f043a8da9ce540af26afef
Parents: 0c1daa6
Author: Andrew Purtell <ap...@apache.org>
Authored: Thu Aug 7 17:53:43 2014 -0700
Committer: Andrew Purtell <ap...@apache.org>
Committed: Thu Aug 7 17:55:22 2014 -0700

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/regionserver/HRegion.java    | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/5dd2afd6/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
index 04ff60f..d296aca 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
@@ -1711,12 +1711,11 @@ public class HRegion implements HeapSize { // , Writable{
         this.updatesLock.writeLock().unlock();
       }
     }
-    if (LOG.isDebugEnabled()) {
-      LOG.debug("Started memstore flush for " + this +
-        ", current region memstore size " +
-        StringUtils.byteDesc(this.memstoreSize.get()) +
-        ((wal != null)? "": "; wal is null, using passed sequenceid=" + myseqid));
-    }
+
+    LOG.info("Started memstore flush for " + this +
+      ", current region memstore size " +
+      StringUtils.byteDesc(this.memstoreSize.get()) +
+      ((wal != null)? "": "; wal is null, using passed sequenceid=" + myseqid));
 
     // Stop updates while we snapshot the memstore of all of these regions' stores. We only have
     // to do this for a moment.  It is quick. We also set the memstore size to zero here before we