You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by an...@apache.org on 2016/10/31 05:35:55 UTC

hbase git commit: HBASE-16747 Track memstore data size and heap overhead separately - Addendum to fix TestIOFencing.

Repository: hbase
Updated Branches:
  refs/heads/master 6ce05d44e -> 79073cd40


HBASE-16747 Track memstore data size and heap overhead separately - Addendum to fix TestIOFencing.


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

Branch: refs/heads/master
Commit: 79073cd40c3b9a32d4509381c9d2763be42045ba
Parents: 6ce05d4
Author: anoopsamjohn <an...@gmail.com>
Authored: Mon Oct 31 11:05:36 2016 +0530
Committer: anoopsamjohn <an...@gmail.com>
Committed: Mon Oct 31 11:05:36 2016 +0530

----------------------------------------------------------------------
 .../src/test/java/org/apache/hadoop/hbase/TestIOFencing.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/79073cd4/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIOFencing.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIOFencing.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIOFencing.java
index 5856b19..eeb4ebf 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIOFencing.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIOFencing.java
@@ -241,7 +241,7 @@ public class TestIOFencing {
     // Insert our custom region
     c.setClass(HConstants.REGION_IMPL, regionClass, HRegion.class);
     // Encourage plenty of flushes
-    c.setLong("hbase.hregion.memstore.flush.size", 100000);
+    c.setLong("hbase.hregion.memstore.flush.size", 25000);
     c.set(HConstants.HBASE_REGION_SPLIT_POLICY_KEY, ConstantSizeRegionSplitPolicy.class.getName());
     // Only run compaction when we tell it to
     c.setInt("hbase.hstore.compaction.min",1);