You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by en...@apache.org on 2014/12/01 23:18:42 UTC

hbase git commit: HBASE-12577 Disable distributed log replay by default (Jeffrey Zhong)

Repository: hbase
Updated Branches:
  refs/heads/branch-1 a184620fb -> 561073217


HBASE-12577 Disable distributed log replay by default (Jeffrey Zhong)


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

Branch: refs/heads/branch-1
Commit: 5610732173dcbbe9bc2c82170780f096385274cd
Parents: a184620
Author: Enis Soztutar <en...@apache.org>
Authored: Mon Dec 1 14:16:31 2014 -0800
Committer: Enis Soztutar <en...@apache.org>
Committed: Mon Dec 1 14:17:30 2014 -0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/HConstants.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/56107321/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
----------------------------------------------------------------------
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
index f987b01..223a0e3 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
@@ -829,9 +829,9 @@ public final class HConstants {
   /** Conf key that enables unflushed WAL edits directly being replayed to region servers */
   public static final String DISTRIBUTED_LOG_REPLAY_KEY = "hbase.master.distributed.log.replay";
   /**
-   * Default 'distributed log replay' as true since hbase 0.99.0
+   * Default 'distributed log replay' as true since hbase 1.1 (HBASE-12577)
    */
-  public static final boolean DEFAULT_DISTRIBUTED_LOG_REPLAY_CONFIG = true;
+  public static final boolean DEFAULT_DISTRIBUTED_LOG_REPLAY_CONFIG = false;
   public static final String DISALLOW_WRITES_IN_RECOVERING =
       "hbase.regionserver.disallow.writes.when.recovering";
   public static final boolean DEFAULT_DISALLOW_WRITES_IN_RECOVERING_CONFIG = false;