MAPREDUCE-6046. Change the class name for logs in RMCommunicator.
Contributed by Sahil Takiar.
(cherry picked from commit 0bd0229110
)
This commit is contained in:
parent
7f39cab356
commit
25f4a0193b
|
@ -14,6 +14,9 @@ Release 2.7.0 - UNRELEASED
|
||||||
MAPREDUCE-5932. Provide an option to use a dedicated reduce-side shuffle
|
MAPREDUCE-5932. Provide an option to use a dedicated reduce-side shuffle
|
||||||
log (Gera Shegalov via jlowe)
|
log (Gera Shegalov via jlowe)
|
||||||
|
|
||||||
|
MAPREDUCE-6046. Change the class name for logs in RMCommunicator
|
||||||
|
(Sahil Takiar via devaraj)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
MAPREDUCE-6169. MergeQueue should release reference to the current item
|
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
|
public abstract class RMCommunicator extends AbstractService
|
||||||
implements RMHeartbeatHandler {
|
implements RMHeartbeatHandler {
|
||||||
private static final Log LOG = LogFactory.getLog(RMContainerAllocator.class);
|
private static final Log LOG = LogFactory.getLog(RMCommunicator.class);
|
||||||
private int rmPollInterval;//millis
|
private int rmPollInterval;//millis
|
||||||
protected ApplicationId applicationId;
|
protected ApplicationId applicationId;
|
||||||
private final AtomicBoolean stopped;
|
private final AtomicBoolean stopped;
|
||||||
|
|
Loading…
Reference in New Issue