You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by rb...@apache.org on 2015/02/27 01:43:49 UTC

tez git commit: TEZ-2083. Make PipelinedSorter as the default sorter (rbalamohan)

Repository: tez
Updated Branches:
  refs/heads/master 3c289c8f7 -> 7a0eff7a2


TEZ-2083. Make PipelinedSorter as the default sorter (rbalamohan)


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

Branch: refs/heads/master
Commit: 7a0eff7a2ff78b126b37f03eff242c2151308383
Parents: 3c289c8
Author: Rajesh Balamohan <rb...@hortonworks.com>
Authored: Fri Feb 27 06:13:38 2015 +0530
Committer: Rajesh Balamohan <rb...@hortonworks.com>
Committed: Fri Feb 27 06:13:38 2015 +0530

----------------------------------------------------------------------
 CHANGES.txt                                                        | 1 +
 .../apache/tez/runtime/library/api/TezRuntimeConfiguration.java    | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/7a0eff7a/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 302292d..18f2789 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -7,6 +7,7 @@ Release 0.7.0: Unreleased
 INCOMPATIBLE CHANGES
 
 ALL CHANGES:
+  TEZ-2083. Make PipelinedSorter as the default sorter.
   TEZ-1967. Add a monitoring API on DAGClient which returns after a time interval or on DAG final state change.
   TEZ-2130. Send the sessionToken as part of the AM CLC.
   TEZ-1935. Organization should be removed from http://tez.apache.org/team-list.html.

http://git-wip-us.apache.org/repos/asf/tez/blob/7a0eff7a/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/api/TezRuntimeConfiguration.java
----------------------------------------------------------------------
diff --git a/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/api/TezRuntimeConfiguration.java b/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/api/TezRuntimeConfiguration.java
index 11b33f4..d9e402b 100644
--- a/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/api/TezRuntimeConfiguration.java
+++ b/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/api/TezRuntimeConfiguration.java
@@ -115,7 +115,7 @@ public class TezRuntimeConfiguration {
 
   public static final String TEZ_RUNTIME_SORT_THREADS = TEZ_RUNTIME_PREFIX +
       "sort.threads";
-  public static final int TEZ_RUNTIME_SORT_THREADS_DEFAULT = 1;
+  public static final int TEZ_RUNTIME_SORT_THREADS_DEFAULT = 2;
 
   /**
    * Size of the buffer to use if not writing directly to disk.