You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by ab...@apache.org on 2020/08/27 13:15:47 UTC

[tez] branch branch-0.10.0 updated (ef1d69a -> d90b104)

This is an automated email from the ASF dual-hosted git repository.

abstractdog pushed a change to branch branch-0.10.0
in repository https://gitbox.apache.org/repos/asf/tez.git.


    from ef1d69a  TEZ-4213: Bound appContext executor capacity using a configurable property (Panagiotis Garefalakis reviewed by Ashutosh Chauhan, Mustafa Iman, Attila Magyar)
     add 3986f5b  TEZ-4216 : RLE check in MergeManager::finalMerge could be disabled (Rajesh Balamohan via Ashutosh Chauhan)
     add 99895f9  TEZ-4213: Bound appContext executor capacity using a configurable property (Panagiotis Garefalakis reviewed by Ashutosh Chauhan, Mustafa Iman, Attila Magyar) - addendum checkstyle
     add 69e7351  TEZ-4224: Add Laszlo Bodor's public key to KEYS (László Bodor reviewed by Jonathan Turner Eagles)
     add 0e17787  TEZ-4175: Consider removing YarnConfiguration where it's possible (László Bodor reviewed by Rajesh Balamohan, Mustafa Iman, Ashutosh Chauhan)
     add d90b104  TEZ-3645: Reuse SerializationFactory while sorting, merging, and writing IFiles (Jonathan Turner Eagles reviewed by Rajesh Balamohan, Laszlo Bodor)

No new revisions were added by this update.

Summary of changes:
 KEYS                                               | 59 +++++++++++++++
 .../org/apache/tez/client/AMConfiguration.java     | 10 ---
 .../org/apache/tez/client/FrameworkClient.java     |  5 +-
 .../main/java/org/apache/tez/client/TezClient.java | 24 ++----
 .../java/org/apache/tez/client/TezYarnClient.java  |  4 +-
 .../apache/tez/dag/api/client/DAGClientImpl.java   |  6 +-
 .../java/org/apache/tez/client/TestTezClient.java  |  3 +-
 .../tez/dag/api/client/rpc/TestDAGClient.java      | 18 ++---
 .../java/org/apache/tez/client/LocalClient.java    |  4 +-
 .../java/org/apache/tez/dag/app/DAGAppMaster.java  |  4 +-
 .../app/dag/TestRootInputInitializerManager.java   |  8 +-
 .../apache/tez/dag/app/rm/TestContainerReuse.java  | 23 +++---
 .../apache/tez/mapreduce/client/YARNRunner.java    |  2 +-
 .../tez/mapreduce/hadoop/TestMRInputHelpers.java   |  3 +-
 .../common/serializer/SerializationContext.java    | 87 ++++++++++++++++++++++
 .../shuffle/orderedgrouped/MergeManager.java       | 78 ++++++++++---------
 .../library/common/sort/impl/ExternalSorter.java   | 19 ++---
 .../runtime/library/common/sort/impl/IFile.java    | 43 +++++------
 .../library/common/sort/impl/PipelinedSorter.java  | 28 ++++---
 .../library/common/sort/impl/TezMerger.java        | 66 +++++++++-------
 .../common/sort/impl/dflt/DefaultSorter.java       | 33 ++++----
 .../writers/BaseUnorderedPartitionedKVWriter.java  |  9 ++-
 .../writers/UnorderedPartitionedKVWriter.java      | 15 ++--
 .../runtime/library/common/TestValuesIterator.java | 57 +++++++-------
 .../common/readers/TestUnorderedKVReader.java      |  5 +-
 .../shuffle/orderedgrouped/TestMergeManager.java   | 16 ++--
 .../library/common/sort/impl/TestIFile.java        | 47 ++++++------
 .../library/common/sort/impl/TestTezMerger.java    | 38 +++++-----
 .../apache/tez/test/FaultToleranceTestRunner.java  |  9 +--
 29 files changed, 435 insertions(+), 288 deletions(-)
 create mode 100644 tez-runtime-library/src/main/java/org/apache/tez/runtime/library/common/serializer/SerializationContext.java