Author: rohini
Date: Tue Apr 12 22:15:35 2016
New Revision: 1738873

URL: http://svn.apache.org/viewvc?rev=1738873&view=rev
Log:
PIG-4869: Removing unwanted configuration in Tez broke 
ConfiguredFailoverProxyProvider (rohini)

Modified:
    pig/trunk/CHANGES.txt
    
pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/tez/util/MRToTezHelper.java

Modified: pig/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1738873&r1=1738872&r2=1738873&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Tue Apr 12 22:15:35 2016
@@ -109,6 +109,8 @@ PIG-4639: Add better parser for Apache H
 
 BUG FIXES
 
+PIG-4869: Removing unwanted configuration in Tez broke 
ConfiguredFailoverProxyProvider (rohini)
+
 PIG-4867: -stop_on_failure does not work with Tez (rohini)
 
 PIG-4844: Tez AM runs out of memory when vertex has high number of outputs 
(rohini)

Modified: 
pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/tez/util/MRToTezHelper.java
URL: 
http://svn.apache.org/viewvc/pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/tez/util/MRToTezHelper.java?rev=1738873&r1=1738872&r2=1738873&view=diff
==============================================================================
--- 
pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/tez/util/MRToTezHelper.java
 (original)
+++ 
pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/tez/util/MRToTezHelper.java
 Tue Apr 12 22:15:35 2016
@@ -165,11 +165,7 @@ public class MRToTezHelper {
                     continue;
                 }
             }
-            if (key.startsWith("dfs.datanode")) {
-                tezConf.unset(key);
-            } else if (key.startsWith("dfs.namenode")) {
-                tezConf.unset(key);
-            } else if (key.startsWith("yarn.nodemanager")) {
+            if (key.startsWith("yarn.nodemanager")) {
                 tezConf.unset(key);
             } else if (key.startsWith("mapreduce.jobhistory")) {
                 tezConf.unset(key);


Reply via email to