From 0b4c5efe7554017a00d79f4ad88d36c32174945e Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Tue, 25 Oct 2011 03:34:22 +0000 Subject: [PATCH] HBASE-4374 Up default regions size from 256M to 1G git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1188505 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES.txt | 1 + src/main/resources/hbase-default.xml | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 147501e93f9..6808beb48fc 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/src/main/resources/hbase-default.xml b/src/main/resources/hbase-default.xml index 03b3e7e4e10..3785533f3d8 100644 --- a/src/main/resources/hbase-default.xml +++ b/src/main/resources/hbase-default.xml @@ -326,7 +326,7 @@ hbase.hregion.memstore.flush.size - 67108864 + 134217728 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 @@ hbase.hregion.max.filesize - 268435456 + 1073741824 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.