MAPREDUCE-6046. Change the class name for logs in RMCommunicator.

Contributed by Sahil Takiar.

(cherry picked from commit 0bd0229110)
This commit is contained in:
Devaraj K 2014-12-12 11:42:03 +05:30
parent 7f39cab356
commit 25f4a0193b
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -67,7 +67,7 @@
*/ */
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;