You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ec...@apache.org on 2013/08/30 21:41:38 UTC

svn commit: r1519055 - in /hbase/branches/0.95: hbase-common/src/main/resources/hbase-default.xml hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/factories/SlowDeterministicMonkeyFactory.java

Author: eclark
Date: Fri Aug 30 19:41:38 2013
New Revision: 1519055

URL: http://svn.apache.org/r1519055
Log:
HBASE-9395 Disable Schema Change on 0.96

Modified:
    hbase/branches/0.95/hbase-common/src/main/resources/hbase-default.xml
    hbase/branches/0.95/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/factories/SlowDeterministicMonkeyFactory.java

Modified: hbase/branches/0.95/hbase-common/src/main/resources/hbase-default.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.95/hbase-common/src/main/resources/hbase-default.xml?rev=1519055&r1=1519054&r2=1519055&view=diff
==============================================================================
--- hbase/branches/0.95/hbase-common/src/main/resources/hbase-default.xml (original)
+++ hbase/branches/0.95/hbase-common/src/main/resources/hbase-default.xml Fri Aug 30 19:41:38 2013
@@ -848,7 +848,7 @@ possible configurations would overwhelm 
   </property>
   <property>
     <name>hbase.online.schema.update.enable</name>
-    <value>true</value>
+    <value>false</value>
     <description>Set true to enable online schema changes.</description>
   </property>
   <property>

Modified: hbase/branches/0.95/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/factories/SlowDeterministicMonkeyFactory.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.95/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/factories/SlowDeterministicMonkeyFactory.java?rev=1519055&r1=1519054&r2=1519055&view=diff
==============================================================================
--- hbase/branches/0.95/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/factories/SlowDeterministicMonkeyFactory.java (original)
+++ hbase/branches/0.95/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/factories/SlowDeterministicMonkeyFactory.java Fri Aug 30 19:41:38 2013
@@ -64,11 +64,7 @@ public class SlowDeterministicMonkeyFact
     Action[] actions2 = new Action[] {
         new SplitRandomRegionOfTableAction(tableName),
         new MergeRandomAdjacentRegionsOfTableAction(tableName),
-        new SnapshotTableAction(tableName),
-        new AddColumnAction(tableName),
-        new RemoveColumnAction(tableName, columnFamilies),
-        new ChangeEncodingAction(tableName),
-        new ChangeVersionsAction(tableName)
+        new SnapshotTableAction(tableName)
     };
 
     // Destructive actions to mess things around.