Repository: tez Updated Branches: refs/heads/master b8ff9417e -> 11327804c
TEZ-3409. Log dagId along with other information when submitting a dag. (sseth) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/11327804 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/11327804 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/11327804 Branch: refs/heads/master Commit: 11327804c9d56f862abee0470c26ca494d7afd9b Parents: b8ff941 Author: Siddharth Seth <[email protected]> Authored: Fri Aug 12 14:28:50 2016 -0700 Committer: Siddharth Seth <[email protected]> Committed: Fri Aug 12 14:28:50 2016 -0700 ---------------------------------------------------------------------- CHANGES.txt | 2 ++ tez-api/src/main/java/org/apache/tez/client/TezClient.java | 2 ++ 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/11327804/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 389ab5f..081bd8a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,6 +7,7 @@ INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-3409. Log dagId along with other information when submitting a dag. TEZ-3384. Fix TestATSV15HistoryLoggingService::testDAGGroupingGroupingEnabled unit test. TEZ-3382. Tez analyzer: Should be resilient to new counters. TEZ-3379. Tez analyzer: Move sysout to log4j. @@ -95,6 +96,7 @@ INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-3409. Log dagId along with other information when submitting a dag. TEZ-3384. Fix TestATSV15HistoryLoggingService::testDAGGroupingGroupingEnabled unit test. TEZ-3376. Fix groupId generation to account for dagId starting with 1. TEZ-3359. Add granular log levels for HistoryLoggingService. http://git-wip-us.apache.org/repos/asf/tez/blob/11327804/tez-api/src/main/java/org/apache/tez/client/TezClient.java ---------------------------------------------------------------------- diff --git a/tez-api/src/main/java/org/apache/tez/client/TezClient.java b/tez-api/src/main/java/org/apache/tez/client/TezClient.java index df39c0a..71ba6b2 100644 --- a/tez-api/src/main/java/org/apache/tez/client/TezClient.java +++ b/tez-api/src/main/java/org/apache/tez/client/TezClient.java @@ -626,9 +626,11 @@ public class TezClient { } catch (ServiceException e) { RPCUtil.unwrapAndThrowException(e); } + LOG.info("Submitted dag to TezSession" + ", sessionName=" + clientName + ", applicationId=" + sessionAppId + + ", dagId=" + dagId + ", dagName=" + dag.getName()); return new DAGClientImpl(sessionAppId, dagId, dagClientConf, frameworkClient);
