MAPREDUCE-6046. Change the class name for logs in RMCommunicator.
Contributed by Sahil Takiar.
This commit is contained in:
parent
b437f5eef4
commit
0bd0229110
|
@ -241,6 +241,9 @@ Release 2.7.0 - UNRELEASED
|
|||
MAPREDUCE-5932. Provide an option to use a dedicated reduce-side shuffle
|
||||
log (Gera Shegalov via jlowe)
|
||||
|
||||
MAPREDUCE-6046. Change the class name for logs in RMCommunicator
|
||||
(Sahil Takiar via devaraj)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
MAPREDUCE-6169. MergeQueue should release reference to the current item
|
||||
|
|
|
@ -67,7 +67,7 @@ import org.apache.hadoop.yarn.proto.YarnServiceProtos.SchedulerResourceTypes;
|
|||
*/
|
||||
public abstract class RMCommunicator extends AbstractService
|
||||
implements RMHeartbeatHandler {
|
||||
private static final Log LOG = LogFactory.getLog(RMContainerAllocator.class);
|
||||
private static final Log LOG = LogFactory.getLog(RMCommunicator.class);
|
||||
private int rmPollInterval;//millis
|
||||
protected ApplicationId applicationId;
|
||||
private final AtomicBoolean stopped;
|
||||
|
|
Loading…
Reference in New Issue