You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by bi...@apache.org on 2015/05/04 21:05:45 UTC

tez git commit: TEZ-1897 addendum to turn off by default . Create a concurrent version of AsyncDispatcher (bikas)

Repository: tez
Updated Branches:
  refs/heads/master c411e4edc -> 5218f481d


TEZ-1897 addendum to turn off by default . Create a concurrent version of AsyncDispatcher (bikas)


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

Branch: refs/heads/master
Commit: 5218f481dba2a26c3aa5dd8f69285ab9da419dd1
Parents: c411e4e
Author: Bikas Saha <bi...@apache.org>
Authored: Mon May 4 12:05:39 2015 -0700
Committer: Bikas Saha <bi...@apache.org>
Committed: Mon May 4 12:05:39 2015 -0700

----------------------------------------------------------------------
 tez-api/src/main/java/org/apache/tez/dag/api/TezConfiguration.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/5218f481/tez-api/src/main/java/org/apache/tez/dag/api/TezConfiguration.java
----------------------------------------------------------------------
diff --git a/tez-api/src/main/java/org/apache/tez/dag/api/TezConfiguration.java b/tez-api/src/main/java/org/apache/tez/dag/api/TezConfiguration.java
index a301957..f64172e 100644
--- a/tez-api/src/main/java/org/apache/tez/dag/api/TezConfiguration.java
+++ b/tez-api/src/main/java/org/apache/tez/dag/api/TezConfiguration.java
@@ -146,7 +146,7 @@ public class TezConfiguration extends Configuration {
   public static final String TEZ_AM_USE_CONCURRENT_DISPATCHER = TEZ_AM_PREFIX
       + "use.concurrent-dispatcher";
   @Private
-  public static boolean TEZ_AM_USE_CONCURRENT_DISPATCHER_DEFAULT = true;
+  public static boolean TEZ_AM_USE_CONCURRENT_DISPATCHER_DEFAULT = false;
   
   @Private
   @ConfigurationScope(Scope.AM)