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 EE11D189EE for ; Sat, 9 May 2015 01:42:39 +0000 (UTC) Received: (qmail 25447 invoked by uid 500); 9 May 2015 01:42:39 -0000 Delivered-To: apmail-tez-commits-archive@tez.apache.org Received: (qmail 25377 invoked by uid 500); 9 May 2015 01:42:39 -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 25327 invoked by uid 99); 9 May 2015 01:42:39 -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; Sat, 09 May 2015 01:42:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 773FAE442E; Sat, 9 May 2015 01:42:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sseth@apache.org To: commits@tez.apache.org Date: Sat, 09 May 2015 01:42:45 -0000 Message-Id: <80494a18f82c4a5ab5950e836cadfa29@git.apache.org> In-Reply-To: <61a467ba74b44ea2bfdd20c7f786770f@git.apache.org> References: <61a467ba74b44ea2bfdd20c7f786770f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [07/43] tez git commit: TEZ-2424. Bump up max counter group name length limit to account for per_io counters. (hitesh) TEZ-2424. Bump up max counter group name length limit to account for per_io counters. (hitesh) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/78ca7af6 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/78ca7af6 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/78ca7af6 Branch: refs/heads/TEZ-2003 Commit: 78ca7af63987e6052d8756f9ab827cb10b26dbcf Parents: 5530863 Author: Hitesh Shah Authored: Wed May 6 15:00:48 2015 -0700 Committer: Hitesh Shah Committed: Wed May 6 15:00:48 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/78ca7af6/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index c865f12..73f8fda 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -14,9 +14,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/78ca7af6/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 /**