MAPREDUCE-7319. Log list of mappers at trace level in ShuffleHandler audit log.
Contributed by Jim Brennan.
(cherry picked from commit 462561654b
)
This commit is contained in:
parent
62389a5a04
commit
37971c71d1
|
@ -1170,10 +1170,15 @@ public class ShuffleHandler extends AuxiliaryService {
|
|||
StringBuilder sb = new StringBuilder("shuffle for ");
|
||||
sb.append(jobId).append(" reducer ").append(reduce);
|
||||
sb.append(" length ").append(contentLength);
|
||||
if (AUDITLOG.isTraceEnabled()) {
|
||||
// For trace level logging, append the list of mappers
|
||||
sb.append(" mappers: ").append(mapIds);
|
||||
AUDITLOG.trace(sb.toString());
|
||||
} else {
|
||||
AUDITLOG.debug(sb.toString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected void setResponseHeaders(HttpResponse response,
|
||||
boolean keepAliveParam, long contentLength) {
|
||||
|
|
Loading…
Reference in New Issue