You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by fb...@apache.org on 2015/04/15 19:01:08 UTC

ambari git commit: AMBARI-10458 [WinTP2] HBase: hbase.regionserver.global.memstore.size is not initialized

Repository: ambari
Updated Branches:
  refs/heads/trunk cfdb955bd -> 4af2453a5


AMBARI-10458 [WinTP2] HBase: hbase.regionserver.global.memstore.size is not initialized

Added the missing parameter


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

Branch: refs/heads/trunk
Commit: 4af2453a52f0079ed779b9df16b4d01b7256df2d
Parents: cfdb955
Author: Florian Barca <fb...@hortonworks.com>
Authored: Wed Apr 15 10:00:57 2015 -0700
Committer: Florian Barca <fb...@hortonworks.com>
Committed: Wed Apr 15 10:00:57 2015 -0700

----------------------------------------------------------------------
 .../HDPWIN/2.2/services/HBASE/configuration/hbase-site.xml  | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/4af2453a/ambari-server/src/main/resources/stacks/HDPWIN/2.2/services/HBASE/configuration/hbase-site.xml
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/resources/stacks/HDPWIN/2.2/services/HBASE/configuration/hbase-site.xml b/ambari-server/src/main/resources/stacks/HDPWIN/2.2/services/HBASE/configuration/hbase-site.xml
index e5b893f..b1bbe51 100644
--- a/ambari-server/src/main/resources/stacks/HDPWIN/2.2/services/HBASE/configuration/hbase-site.xml
+++ b/ambari-server/src/main/resources/stacks/HDPWIN/2.2/services/HBASE/configuration/hbase-site.xml
@@ -61,5 +61,14 @@
     worse, we OOME.
     </description>
   </property>
+  <property>
+    <name>hbase.regionserver.global.memstore.size</name>
+    <value>0.4</value>
+    <description>Maximum size of all memstores in a region server before new
+      updates are blocked and flushes are forced. Defaults to 40% of heap.
+      Updates are blocked and flushes are forced until size of all memstores
+      in a region server hits hbase.regionserver.global.memstore.size.lower.limit.
+    </description>
+  </property>
 
 </configuration>