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 00:58:18 UTC

svn commit: r1188435 - in /hbase/branches/0.92: CHANGES.txt src/main/resources/hbase-default.xml

Author: stack
Date: Mon Oct 24 22:58:18 2011
New Revision: 1188435

URL: http://svn.apache.org/viewvc?rev=1188435&view=rev
Log:
HBASE-4656 Note how dfs.support.append has to be enabled in 0.20.205.0 clusters

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

Modified: hbase/branches/0.92/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/branches/0.92/CHANGES.txt?rev=1188435&r1=1188434&r2=1188435&view=diff
==============================================================================
--- hbase/branches/0.92/CHANGES.txt (original)
+++ hbase/branches/0.92/CHANGES.txt Mon Oct 24 22:58:18 2011
@@ -692,6 +692,8 @@ Release 0.92.0 - Unreleased
                (todd)
    HBASE-4057  Implement HBase version of "show processlist" (Riley Patterson)
    HBASE-4437  Update hadoop in 0.92 (0.20.205?)
+   HBASE-4656  Note how dfs.support.append has to be enabled in 0.20.205.0
+               clusters
 
 Release 0.90.5 - Unreleased
 

Modified: hbase/branches/0.92/src/main/resources/hbase-default.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.92/src/main/resources/hbase-default.xml?rev=1188435&r1=1188434&r2=1188435&view=diff
==============================================================================
--- hbase/branches/0.92/src/main/resources/hbase-default.xml (original)
+++ hbase/branches/0.92/src/main/resources/hbase-default.xml Mon Oct 24 22:58:18 2011
@@ -734,4 +734,13 @@
       simplify coprocessor failure analysis.
       </description>
   </property>
+  <property>
+    <name>dfs.support.append</name>
+    <value>true</value>
+    <description>Does HDFS allow appends to files?
+    This is an hdfs config. set in here so the hdfs client will do append support.
+    You must ensure that this config. is true serverside too when running hbase
+    (You will have to restart your cluster after setting it).
+  </description>
+</property>
 </configuration>