Repository: tez Updated Branches: refs/heads/branch-0.8 890fe1070 -> 8a83cb900
TEZ-3409. Log dagId along with other information when submitting a dag. (sseth) (cherry picked from commit 11327804c9d56f862abee0470c26ca494d7afd9b) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/8a83cb90 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/8a83cb90 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/8a83cb90 Branch: refs/heads/branch-0.8 Commit: 8a83cb900e6a9873f17ccf610f060049339c57a0 Parents: 890fe10 Author: Siddharth Seth <[email protected]> Authored: Fri Aug 12 14:28:50 2016 -0700 Committer: Siddharth Seth <[email protected]> Committed: Fri Aug 12 14:30:03 2016 -0700 ---------------------------------------------------------------------- CHANGES.txt | 1 + tez-api/src/main/java/org/apache/tez/client/TezClient.java | 2 ++ 2 files changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/8a83cb90/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index e9d6218..24d203b 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-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/8a83cb90/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);
