You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2015/06/05 22:22:43 UTC

hbase git commit: HBASE-13729 Old hbase.regionserver.global.memstore.upperLimit and lowerLimit properties are ignored if present (Esteban Guitierrez)

Repository: hbase
Updated Branches:
  refs/heads/master 67c463f63 -> c1be65ecf


HBASE-13729 Old hbase.regionserver.global.memstore.upperLimit and lowerLimit properties are ignored if present (Esteban Guitierrez)


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

Branch: refs/heads/master
Commit: c1be65ecf095157dc4112429af23916b96aafb95
Parents: 67c463f
Author: stack <st...@apache.org>
Authored: Fri Jun 5 13:22:35 2015 -0700
Committer: stack <st...@apache.org>
Committed: Fri Jun 5 13:22:35 2015 -0700

----------------------------------------------------------------------
 hbase-common/src/main/resources/hbase-default.xml | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/c1be65ec/hbase-common/src/main/resources/hbase-default.xml
----------------------------------------------------------------------
diff --git a/hbase-common/src/main/resources/hbase-default.xml b/hbase-common/src/main/resources/hbase-default.xml
index 9a4baf5..57d2927 100644
--- a/hbase-common/src/main/resources/hbase-default.xml
+++ b/hbase-common/src/main/resources/hbase-default.xml
@@ -296,19 +296,23 @@ possible configurations would overwhelm and obscure the important.
   </property>
   <property>
     <name>hbase.regionserver.global.memstore.size</name>
-    <value>0.4</value>
+    <value></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. Defaults to 40% of heap (0.4).
       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>
+      in a region server hits hbase.regionserver.global.memstore.size.lower.limit.
+      The default value in this configuration has been intentionally left emtpy in order to
+      honor the old hbase.regionserver.global.memstore.upperLimit property if present.</description>
   </property>
   <property>
     <name>hbase.regionserver.global.memstore.size.lower.limit</name>
-    <value>0.95</value>
+    <value></value>
     <description>Maximum size of all memstores in a region server before flushes are forced.
-      Defaults to 95% of hbase.regionserver.global.memstore.size.
+      Defaults to 95% of hbase.regionserver.global.memstore.size (0.95).
       A 100% value for this value causes the minimum possible flushing to occur when updates are 
-      blocked due to memstore limiting.</description>
+      blocked due to memstore limiting.
+      The default value in this configuration has been intentionally left emtpy in order to
+      honor the old hbase.regionserver.global.memstore.lowerLimit property if present.</description>
   </property>
   <property>
     <name>hbase.regionserver.optionalcacheflushinterval</name>