Repository: tez
Updated Branches:
  refs/heads/TEZ-3334 f42415d39 -> b4e22bc72


TEZ-3532. Backport MAPREDUCE-6808. Log map attempts as part of shuffle handler 
audit log (Kuhu Shukla via jeagles)


Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/b4e22bc7
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/b4e22bc7
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/b4e22bc7

Branch: refs/heads/TEZ-3334
Commit: b4e22bc728d579fda057a85e2b938adc86595120
Parents: f42415d
Author: Jonathan Eagles <[email protected]>
Authored: Mon Dec 19 15:12:38 2016 -0600
Committer: Jonathan Eagles <[email protected]>
Committed: Mon Dec 19 15:12:38 2016 -0600

----------------------------------------------------------------------
 TEZ-3334-CHANGES.txt                                             | 1 +
 .../src/main/java/org/apache/tez/auxservices/ShuffleHandler.java | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/b4e22bc7/TEZ-3334-CHANGES.txt
----------------------------------------------------------------------
diff --git a/TEZ-3334-CHANGES.txt b/TEZ-3334-CHANGES.txt
index d0b11a9..de0984a 100644
--- a/TEZ-3334-CHANGES.txt
+++ b/TEZ-3334-CHANGES.txt
@@ -4,6 +4,7 @@ Apache Tez Change Log
 INCOMPATIBLE CHANGES:
 
 ALL CHANGES:
+  TEZ-3532. Backport MAPREDUCE-6808. Log map attempts as part of shuffle 
handler audit log
   TEZ-3563. Tez Shuffle Handler logging fails to initialize
   TEZ-3564. TezConfiguration#TEZ_DELETION_TRACKER_CLASS has the wrong config 
key-name
   TEZ-3557. TEZ-3362 causes TestContainerLauncherWrapper#testDelegation to fail

http://git-wip-us.apache.org/repos/asf/tez/blob/b4e22bc7/tez-plugins/tez-aux-services/src/main/java/org/apache/tez/auxservices/ShuffleHandler.java
----------------------------------------------------------------------
diff --git 
a/tez-plugins/tez-aux-services/src/main/java/org/apache/tez/auxservices/ShuffleHandler.java
 
b/tez-plugins/tez-aux-services/src/main/java/org/apache/tez/auxservices/ShuffleHandler.java
index 80b9d46..91d42d8 100644
--- 
a/tez-plugins/tez-aux-services/src/main/java/org/apache/tez/auxservices/ShuffleHandler.java
+++ 
b/tez-plugins/tez-aux-services/src/main/java/org/apache/tez/auxservices/ShuffleHandler.java
@@ -981,8 +981,8 @@ public class ShuffleHandler extends AuxiliaryService {
       // to turn it on please enable this audit log
       // on log4j.properties by uncommenting the setting
       if (AUDITLOG.isDebugEnabled()) {
-        AUDITLOG.debug("shuffle for " + jobQ.get(0) +
-                         " reducer " + reduceRange);
+        AUDITLOG.debug("shuffle for " + jobQ.get(0) + " mapper: " + mapIds
+                         + " reducer: " + reduceRange);
       }
       String jobId;
       String dagId;

Reply via email to