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 2011/10/25 05:34:22 UTC

svn commit: r1188505 - in /hbase/trunk: CHANGES.txt src/main/resources/hbase-default.xml

Author: stack
Date: Tue Oct 25 03:34:22 2011
New Revision: 1188505

URL: http://svn.apache.org/viewvc?rev=1188505&view=rev
Log:
HBASE-4374 Up default regions size from 256M to 1G

Modified:
    hbase/trunk/CHANGES.txt
    hbase/trunk/src/main/resources/hbase-default.xml

Modified: hbase/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/trunk/CHANGES.txt?rev=1188505&r1=1188504&r2=1188505&view=diff
==============================================================================
--- hbase/trunk/CHANGES.txt (original)
+++ hbase/trunk/CHANGES.txt Tue Oct 25 03:34:22 2011
@@ -57,6 +57,7 @@ Release 0.92.0 - Unreleased
    HBASE-4247  Add isAborted method to the Abortable interface
                (Akash Ashok)
    HBASE-4503  Purge deprecated HBaseClusterTestCase
+   HBASE-4374  Up default regions size from 256M to 1G
 
   BUG FIXES
    HBASE-3280  YouAreDeadException being swallowed in HRS getMaster

Modified: hbase/trunk/src/main/resources/hbase-default.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/src/main/resources/hbase-default.xml?rev=1188505&r1=1188504&r2=1188505&view=diff
==============================================================================
--- hbase/trunk/src/main/resources/hbase-default.xml (original)
+++ hbase/trunk/src/main/resources/hbase-default.xml Tue Oct 25 03:34:22 2011
@@ -326,7 +326,7 @@
   </property>
   <property>
     <name>hbase.hregion.memstore.flush.size</name>
-    <value>67108864</value>
+    <value>134217728</value>
     <description>
     Memstore will be flushed to disk if size of the memstore
     exceeds this number of bytes.  Value is checked by a thread that runs
@@ -372,11 +372,11 @@
   </property>
   <property>
     <name>hbase.hregion.max.filesize</name>
-    <value>268435456</value>
+    <value>1073741824</value>
     <description>
     Maximum HStoreFile size. If any one of a column families' HStoreFiles has
     grown to exceed this value, the hosting HRegion is split in two.
-    Default: 256M.
+    Default: 1G.
     </description>
   </property>
   <property>