Return-Path: X-Original-To: apmail-tez-commits-archive@minotaur.apache.org Delivered-To: apmail-tez-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4530118006 for ; Mon, 4 May 2015 19:05:46 +0000 (UTC) Received: (qmail 44123 invoked by uid 500); 4 May 2015 19:05:46 -0000 Delivered-To: apmail-tez-commits-archive@tez.apache.org Received: (qmail 44091 invoked by uid 500); 4 May 2015 19:05:46 -0000 Mailing-List: contact commits-help@tez.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tez.apache.org Delivered-To: mailing list commits@tez.apache.org Received: (qmail 44066 invoked by uid 99); 4 May 2015 19:05:46 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 May 2015 19:05:46 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CE81FE0949; Mon, 4 May 2015 19:05:45 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bikas@apache.org To: commits@tez.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: tez git commit: TEZ-1897 addendum to turn off by default . Create a concurrent version of AsyncDispatcher (bikas) Date: Mon, 4 May 2015 19:05:45 +0000 (UTC) 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 Authored: Mon May 4 12:05:39 2015 -0700 Committer: Bikas Saha 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)