You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by la...@apache.org on 2014/02/18 03:23:54 UTC

svn commit: r1569165 - /hbase/branches/0.94/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java

Author: larsh
Date: Tue Feb 18 02:23:54 2014
New Revision: 1569165

URL: http://svn.apache.org/r1569165
Log:
HBASE-10562 Fix TestMultiTableInputFormat for Hadoop 2 in 0.94.

Modified:
    hbase/branches/0.94/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java

Modified: hbase/branches/0.94/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.94/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java?rev=1569165&r1=1569164&r2=1569165&view=diff
==============================================================================
--- hbase/branches/0.94/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java (original)
+++ hbase/branches/0.94/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java Tue Feb 18 02:23:54 2014
@@ -1453,6 +1453,7 @@ public class HBaseTestingUtility {
     c.set("mapred.job.tracker", mrClusterJobConf.get("mapred.job.tracker"));
     /* this for mrv2 support */
     conf.set("mapreduce.framework.name", "yarn");
+    conf.setBoolean("yarn.is.minicluster", true);
     String rmAdress = mrClusterJobConf.get("yarn.resourcemanager.address");
     if (rmAdress != null) {
       conf.set("yarn.resourcemanager.address", rmAdress);