Repository: tez
Updated Branches:
  refs/heads/TEZ-3334 0f65db78b -> a6b9009b5


TEZ-3620. UnorderedPartitionedKVOutput is missing the shuffle service config in 
the confKeys set (Kuhu Shukla via jeagles)


Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/a6b9009b
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/a6b9009b
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/a6b9009b

Branch: refs/heads/TEZ-3334
Commit: a6b9009b5bd5b36f9e0296b762f1d1be9d0a917b
Parents: 0f65db7
Author: Jonathan Eagles <[email protected]>
Authored: Fri Feb 10 13:55:29 2017 -0600
Committer: Jonathan Eagles <[email protected]>
Committed: Fri Feb 10 13:55:29 2017 -0600

----------------------------------------------------------------------
 TEZ-3334-CHANGES.txt                                                | 1 +
 .../tez/runtime/library/output/UnorderedPartitionedKVOutput.java    | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/a6b9009b/TEZ-3334-CHANGES.txt
----------------------------------------------------------------------
diff --git a/TEZ-3334-CHANGES.txt b/TEZ-3334-CHANGES.txt
index a898ba5..e3b5de5 100644
--- a/TEZ-3334-CHANGES.txt
+++ b/TEZ-3334-CHANGES.txt
@@ -4,6 +4,7 @@ Apache Tez Change Log
 INCOMPATIBLE CHANGES:
 
 ALL CHANGES:
+  TEZ-3620. UnorderedPartitionedKVOutput is missing the shuffle service config 
in the confKeys set
   TEZ-3618. Shuffle Handler Loading cache equality tests always results is 
false
   TEZ-3612. Tez Shuffle Handler Content length does not match actual
   TEZ-3608. Fetcher can hang if copyMapOutput/fetchInputs returns early

http://git-wip-us.apache.org/repos/asf/tez/blob/a6b9009b/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/output/UnorderedPartitionedKVOutput.java
----------------------------------------------------------------------
diff --git 
a/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/output/UnorderedPartitionedKVOutput.java
 
b/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/output/UnorderedPartitionedKVOutput.java
index 3d16181..06e7d15 100644
--- 
a/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/output/UnorderedPartitionedKVOutput.java
+++ 
b/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/output/UnorderedPartitionedKVOutput.java
@@ -147,6 +147,7 @@ public class UnorderedPartitionedKVOutput extends 
AbstractLogicalOutput {
     confKeys.add(TezConfiguration.TEZ_COUNTERS_MAX_GROUPS);
     
confKeys.add(TezRuntimeConfiguration.TEZ_RUNTIME_CLEANUP_FILES_ON_INTERRUPT);
     confKeys.add(TezRuntimeConfiguration.TEZ_RUNTIME_REPORT_PARTITION_STATS);
+    confKeys.add(TezConfiguration.TEZ_AM_SHUFFLE_AUXILIARY_SERVICE_ID);
   }
 
   // TODO Maybe add helper methods to extract keys

Reply via email to