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

[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 <hi...@apache.org>
Authored: Wed May 6 15:00:48 2015 -0700
Committer: Hitesh Shah <hi...@apache.org>
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
   /**