Author: jimk
Date: Thu Jan 17 22:11:06 2008
New Revision: 613062

URL: http://svn.apache.org/viewvc?rev=613062&view=rev
Log:
HADOOP-2525 Same 2 lines repeated 11 million times in HMaster log upon HMaster 
shutdown
HADOOP-2616 hbase not spliting when the total size of region reaches max region 
size * 1.5

Modified:
    lucene/hadoop/trunk/src/contrib/hbase/CHANGES.txt
    lucene/hadoop/trunk/src/contrib/hbase/conf/hbase-default.xml
    
lucene/hadoop/trunk/src/contrib/hbase/src/java/org/apache/hadoop/hbase/HRegion.java

Modified: lucene/hadoop/trunk/src/contrib/hbase/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/lucene/hadoop/trunk/src/contrib/hbase/CHANGES.txt?rev=613062&r1=613061&r2=613062&view=diff
==============================================================================
--- lucene/hadoop/trunk/src/contrib/hbase/CHANGES.txt (original)
+++ lucene/hadoop/trunk/src/contrib/hbase/CHANGES.txt Thu Jan 17 22:11:06 2008
@@ -197,6 +197,10 @@
    HADOOP-2589 Change an classes/package name from Shell to hql
                (Edward Yoon via Stack)
    HADOOP-2545 hbase rest server should be started with hbase-daemon.sh
+   HADOOP-2525 Same 2 lines repeated 11 million times in HMaster log upon
+               HMaster shutdown
+   HADOOP-2616 hbase not spliting when the total size of region reaches max
+               region size * 1.5
 
 Release 0.15.1
 Branch 0.15

Modified: lucene/hadoop/trunk/src/contrib/hbase/conf/hbase-default.xml
URL: 
http://svn.apache.org/viewvc/lucene/hadoop/trunk/src/contrib/hbase/conf/hbase-default.xml?rev=613062&r1=613061&r2=613062&view=diff
==============================================================================
--- lucene/hadoop/trunk/src/contrib/hbase/conf/hbase-default.xml (original)
+++ lucene/hadoop/trunk/src/contrib/hbase/conf/hbase-default.xml Thu Jan 17 
22:11:06 2008
@@ -178,8 +178,9 @@
     <name>hbase.hregion.max.filesize</name>
     <value>268435456</value>
     <description>
-    Maximum desired file size for an HRegion.  If filesize exceeds
-    value + (value / 2), the HRegion is split in two.  Default: 256M.
+    Maximum HStoreFile size. If any one of a column families' HStoreFiles has
+    grown to exceed value + (value / 2), the hosting HRegion is split in two.
+    Default: 256M.
     </description>
   </property>
   <property>

Modified: 
lucene/hadoop/trunk/src/contrib/hbase/src/java/org/apache/hadoop/hbase/HRegion.java
URL: 
http://svn.apache.org/viewvc/lucene/hadoop/trunk/src/contrib/hbase/src/java/org/apache/hadoop/hbase/HRegion.java?rev=613062&r1=613061&r2=613062&view=diff
==============================================================================
--- 
lucene/hadoop/trunk/src/contrib/hbase/src/java/org/apache/hadoop/hbase/HRegion.java
 (original)
+++ 
lucene/hadoop/trunk/src/contrib/hbase/src/java/org/apache/hadoop/hbase/HRegion.java
 Thu Jan 17 22:11:06 2008
@@ -430,7 +430,7 @@
         // outstanding row locks to come in before we close so we do not drop
         // outstanding updates.
         waitOnRowLocks();
-        LOG.debug("no more write locks outstanding on region " + regionName);
+        LOG.debug("no more row locks outstanding on region " + regionName);
         
         if (listener != null) {
           // If there is a listener, let them know that we have now


Reply via email to