You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ro...@apache.org on 2015/05/04 20:15:05 UTC

svn commit: r1677646 - in /pig/branches/branch-0.15: CHANGES.txt shims/test/hadoop20/org/apache/pig/test/MiniCluster.java

Author: rohini
Date: Mon May  4 18:15:05 2015
New Revision: 1677646

URL: http://svn.apache.org/r1677646
Log:
PIG-4530: StackOverflow in TestMultiQueryLocal running under hadoop20 (nielsbasjes via rohini)

Modified:
    pig/branches/branch-0.15/CHANGES.txt
    pig/branches/branch-0.15/shims/test/hadoop20/org/apache/pig/test/MiniCluster.java

Modified: pig/branches/branch-0.15/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.15/CHANGES.txt?rev=1677646&r1=1677645&r2=1677646&view=diff
==============================================================================
--- pig/branches/branch-0.15/CHANGES.txt (original)
+++ pig/branches/branch-0.15/CHANGES.txt Mon May  4 18:15:05 2015
@@ -66,6 +66,8 @@ PIG-4333: Split BigData tests into multi
  
 BUG FIXES
 
+PIG-4530: StackOverflow in TestMultiQueryLocal running under hadoop20 (nielsbasjes via rohini)
+
 PIG-4529: Pig on tez hit counter limit imposed by MR (daijy)
 
 PIG-4524: Pig Minicluster unit tests broken by TEZ-2333 (daijy)

Modified: pig/branches/branch-0.15/shims/test/hadoop20/org/apache/pig/test/MiniCluster.java
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.15/shims/test/hadoop20/org/apache/pig/test/MiniCluster.java?rev=1677646&r1=1677645&r2=1677646&view=diff
==============================================================================
--- pig/branches/branch-0.15/shims/test/hadoop20/org/apache/pig/test/MiniCluster.java (original)
+++ pig/branches/branch-0.15/shims/test/hadoop20/org/apache/pig/test/MiniCluster.java Mon May  4 18:15:05 2015
@@ -25,7 +25,9 @@ import org.apache.hadoop.conf.Configurat
 import org.apache.hadoop.hdfs.MiniDFSCluster;
 import org.apache.hadoop.mapred.MiniMRCluster;
 import org.apache.pig.ExecType;
+import org.apache.pig.backend.hadoop.executionengine.Launcher;
 import org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.MRConfiguration;
+import org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.MapReduceLauncher;
 
 public class MiniCluster extends MiniGenericCluster {
     private static final File CONF_DIR = new File("build/classes");
@@ -95,4 +97,8 @@ public class MiniCluster extends MiniGen
         if (m_mr != null) { m_mr.shutdown(); }
             m_mr = null;
     }
+
+    static public Launcher getLauncher() {
+        return new MapReduceLauncher();
+    }
 }