Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 8ABED200C34 for ; Mon, 27 Feb 2017 23:50:42 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 893D9160B60; Mon, 27 Feb 2017 22:50:42 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D17DB160B5B for ; Mon, 27 Feb 2017 23:50:41 +0100 (CET) Received: (qmail 93100 invoked by uid 500); 27 Feb 2017 22:50:40 -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 93091 invoked by uid 99); 27 Feb 2017 22:50:40 -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, 27 Feb 2017 22:50:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9B28CDFDCF; Mon, 27 Feb 2017 22:50:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jeagles@apache.org To: commits@tez.apache.org Message-Id: <46992f60ff8e4966a28cda592068873c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: tez git commit: TEZ-3638. VertexImpl logs too much at info when removing tasks after auto-reduce parallelism (jeagles) Date: Mon, 27 Feb 2017 22:50:40 +0000 (UTC) archived-at: Mon, 27 Feb 2017 22:50:42 -0000 Repository: tez Updated Branches: refs/heads/master 2158b95df -> d5bf28bfa TEZ-3638. VertexImpl logs too much at info when removing tasks after auto-reduce parallelism (jeagles) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/d5bf28bf Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/d5bf28bf Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/d5bf28bf Branch: refs/heads/master Commit: d5bf28bfaeda306936a9752dfd3f6821cbebf235 Parents: 2158b95 Author: Jonathan Eagles Authored: Mon Feb 27 16:50:30 2017 -0600 Committer: Jonathan Eagles Committed: Mon Feb 27 16:50:30 2017 -0600 ---------------------------------------------------------------------- CHANGES.txt | 1 + .../src/main/java/org/apache/tez/dag/app/dag/impl/VertexImpl.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/d5bf28bf/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 34f8624..c9ac898 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,6 +7,7 @@ INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-3638. VertexImpl logs too much at info when removing tasks after auto-reduce parallelism TEZ-3634. reduce the default buffer sizes in PipelinedSorter by a small amount. TEZ-3627. Use queue name available in RegisterApplicationMasterResponse for publishing to ATS. TEZ-3610. TEZ UI 0.7 0.9 compatibility for url query params and tez-app sub-routes http://git-wip-us.apache.org/repos/asf/tez/blob/d5bf28bf/tez-dag/src/main/java/org/apache/tez/dag/app/dag/impl/VertexImpl.java ---------------------------------------------------------------------- diff --git a/tez-dag/src/main/java/org/apache/tez/dag/app/dag/impl/VertexImpl.java b/tez-dag/src/main/java/org/apache/tez/dag/app/dag/impl/VertexImpl.java index 4cda98d..1ab3da8 100644 --- a/tez-dag/src/main/java/org/apache/tez/dag/app/dag/impl/VertexImpl.java +++ b/tez-dag/src/main/java/org/apache/tez/dag/app/dag/impl/VertexImpl.java @@ -2506,7 +2506,7 @@ public class VertexImpl implements org.apache.tez.dag.app.dag.Vertex, EventHandl if (i <= newNumTasks) { continue; } - LOG.info("Removing task: " + entry.getKey()); + LOG.debug("Removing task: {}", entry.getKey()); iter.remove(); this.numTasks--; }