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 0A87518243 for ; Wed, 6 May 2015 22:01:38 +0000 (UTC) Received: (qmail 30161 invoked by uid 500); 6 May 2015 22:01:38 -0000 Delivered-To: apmail-tez-commits-archive@tez.apache.org Received: (qmail 30141 invoked by uid 500); 6 May 2015 22:01:37 -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 30131 invoked by uid 99); 6 May 2015 22:01:37 -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; Wed, 06 May 2015 22:01:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CBFA1E00B4; Wed, 6 May 2015 22:01:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: hitesh@apache.org To: commits@tez.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: tez git commit: TEZ-2424. Bump up max counter group name length limit to account for per_io counters. (hitesh) Date: Wed, 6 May 2015 22:01:37 +0000 (UTC) Repository: tez Updated Branches: refs/heads/branch-0.7 128668765 -> a0a659a71 TEZ-2424. Bump up max counter group name length limit to account for per_io counters. (hitesh) (cherry picked from commit 78ca7af63987e6052d8756f9ab827cb10b26dbcf) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/a0a659a7 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/a0a659a7 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/a0a659a7 Branch: refs/heads/branch-0.7 Commit: a0a659a712bbe9e4362c668939c3893196996a0f Parents: 1286687 Author: Hitesh Shah Authored: Wed May 6 15:00:48 2015 -0700 Committer: Hitesh Shah Committed: Wed May 6 15:01:22 2015 -0700 ---------------------------------------------------------------------- CHANGES.txt | 5 ++++- .../src/main/java/org/apache/tez/dag/api/TezConfiguration.java | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/a0a659a7/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 15db3af..b19cceb 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,9 +6,12 @@ Release 0.7.0: Unreleased INCOMPATIBLE CHANGES TEZ-2176. Move all logging to slf4j. (commons-logging jar no longer part of Tez tar) - TEZ-1993. Implement a pluggable InputSizeEstimator for grouping fairly + TEZ-1993. Implement a pluggable InputSizeEstimator for grouping fairly. + TEZ-2424. Bump up max counter group name length limit to account for per_io counters. + Default max limit increased. Should not affect existing users. ALL CHANGES: + TEZ-2424. Bump up max counter group name length limit to account for per_io counters. TEZ-2417. Tez UI: Counters are blank in the Attempts page if all attempts failed TEZ-2366. Pig tez MiniTezCluster unit tests fail intermittently after TEZ-2333 TEZ-2406. Tez UI: Display per-io counter columns in task and attempt pages under vertex http://git-wip-us.apache.org/repos/asf/tez/blob/a0a659a7/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 f64172e..e4170e9 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 @@ -372,7 +372,7 @@ public class TezConfiguration extends Configuration { @ConfigurationScope(Scope.AM) public static final String TEZ_COUNTERS_GROUP_NAME_MAX_LENGTH = TEZ_PREFIX + "counters.group-name.max-length"; - public static final int TEZ_COUNTERS_GROUP_NAME_MAX_LENGTH_DEFAULT = 128; + public static final int TEZ_COUNTERS_GROUP_NAME_MAX_LENGTH_DEFAULT = 256; @Unstable /**