Repository: tez Updated Branches: refs/heads/master 1250ef59d -> a2ba95043
TEZ-3750. Add TEZ_RUNTIME_UNORDERED_PARTITIONED_KVWRITER_BUFFER_MERGE_PERCENT to UnorderedPartitionedKVOutput. (harishjp) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/a2ba9504 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/a2ba9504 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/a2ba9504 Branch: refs/heads/master Commit: a2ba95043304decd01f3d094fd5891bdfdc84f37 Parents: 1250ef5 Author: Harish JP <[email protected]> Authored: Fri Jun 2 07:04:06 2017 +0530 Committer: Harish JP <[email protected]> Committed: Fri Jun 2 07:04:06 2017 +0530 ---------------------------------------------------------------------- .../tez/runtime/library/output/UnorderedPartitionedKVOutput.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/a2ba9504/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 06e7d15..eeca066 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 @@ -148,6 +148,8 @@ public class UnorderedPartitionedKVOutput extends AbstractLogicalOutput { 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); + confKeys.add( + TezRuntimeConfiguration.TEZ_RUNTIME_UNORDERED_PARTITIONED_KVWRITER_BUFFER_MERGE_PERCENT); } // TODO Maybe add helper methods to extract keys
