svn merge -c 1401738 FIXES: MAPREDUCE-4741. WARN and ERROR messages logged during normal AM shutdown. Contributed by Vinod Kumar Vavilapalli
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1401741 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b702473f5c
commit
33cb0be07c
|
@ -460,6 +460,9 @@ Release 0.23.5 - UNRELEASED
|
|||
|
||||
MAPREDUCE-4229. Intern counter names in the JT (Miomir Boljanovic and bobby via daryn)
|
||||
|
||||
MAPREDUCE-4741. WARN and ERROR messages logged during normal AM shutdown.
|
||||
(Vinod Kumar Vavilapalli via jlowe)
|
||||
|
||||
Release 0.23.4 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -30,6 +30,7 @@ import java.util.concurrent.LinkedBlockingQueue;
|
|||
import java.util.concurrent.ThreadFactory;
|
||||
import java.util.concurrent.ThreadPoolExecutor;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
@ -81,6 +82,7 @@ public class ContainerLauncherImpl extends AbstractService implements
|
|||
protected BlockingQueue<ContainerLauncherEvent> eventQueue =
|
||||
new LinkedBlockingQueue<ContainerLauncherEvent>();
|
||||
YarnRPC rpc;
|
||||
private final AtomicBoolean stopped;
|
||||
|
||||
private Container getContainer(ContainerLauncherEvent event) {
|
||||
ContainerId id = event.getContainerID();
|
||||
|
@ -237,6 +239,7 @@ public class ContainerLauncherImpl extends AbstractService implements
|
|||
public ContainerLauncherImpl(AppContext context) {
|
||||
super(ContainerLauncherImpl.class.getName());
|
||||
this.context = context;
|
||||
this.stopped = new AtomicBoolean(false);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -271,11 +274,13 @@ public class ContainerLauncherImpl extends AbstractService implements
|
|||
@Override
|
||||
public void run() {
|
||||
ContainerLauncherEvent event = null;
|
||||
while (!Thread.currentThread().isInterrupted()) {
|
||||
while (!stopped.get() && !Thread.currentThread().isInterrupted()) {
|
||||
try {
|
||||
event = eventQueue.take();
|
||||
} catch (InterruptedException e) {
|
||||
if (!stopped.get()) {
|
||||
LOG.error("Returning, interrupted : " + e);
|
||||
}
|
||||
return;
|
||||
}
|
||||
int poolSize = launcherPool.getCorePoolSize();
|
||||
|
@ -324,6 +329,10 @@ public class ContainerLauncherImpl extends AbstractService implements
|
|||
}
|
||||
|
||||
public void stop() {
|
||||
if (stopped.getAndSet(true)) {
|
||||
// return if already stopped
|
||||
return;
|
||||
}
|
||||
// shutdown any containers that might be left running
|
||||
shutdownAllContainers();
|
||||
eventHandlingThread.interrupt();
|
||||
|
|
|
@ -67,7 +67,7 @@ public abstract class RMCommunicator extends AbstractService {
|
|||
private int rmPollInterval;//millis
|
||||
protected ApplicationId applicationId;
|
||||
protected ApplicationAttemptId applicationAttemptId;
|
||||
private AtomicBoolean stopped;
|
||||
private final AtomicBoolean stopped;
|
||||
protected Thread allocatorThread;
|
||||
@SuppressWarnings("rawtypes")
|
||||
protected EventHandler eventHandler;
|
||||
|
@ -239,7 +239,9 @@ public abstract class RMCommunicator extends AbstractService {
|
|||
// TODO: for other exceptions
|
||||
}
|
||||
} catch (InterruptedException e) {
|
||||
if (!stopped.get()) {
|
||||
LOG.warn("Allocated thread interrupted. Returning.");
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -32,6 +32,7 @@ import java.util.Map.Entry;
|
|||
import java.util.Set;
|
||||
import java.util.concurrent.BlockingQueue;
|
||||
import java.util.concurrent.LinkedBlockingQueue;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
@ -84,7 +85,7 @@ public class RMContainerAllocator extends RMContainerRequestor
|
|||
private static final Priority PRIORITY_MAP;
|
||||
|
||||
private Thread eventHandlingThread;
|
||||
private volatile boolean stopEventHandling;
|
||||
private final AtomicBoolean stopped;
|
||||
|
||||
static {
|
||||
PRIORITY_FAST_FAIL_MAP = RecordFactoryProvider.getRecordFactory(null).newRecordInstance(Priority.class);
|
||||
|
@ -145,6 +146,7 @@ public class RMContainerAllocator extends RMContainerRequestor
|
|||
|
||||
public RMContainerAllocator(ClientService clientService, AppContext context) {
|
||||
super(clientService, context);
|
||||
this.stopped = new AtomicBoolean(false);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -176,11 +178,13 @@ public class RMContainerAllocator extends RMContainerRequestor
|
|||
|
||||
ContainerAllocatorEvent event;
|
||||
|
||||
while (!stopEventHandling && !Thread.currentThread().isInterrupted()) {
|
||||
while (!stopped.get() && !Thread.currentThread().isInterrupted()) {
|
||||
try {
|
||||
event = RMContainerAllocator.this.eventQueue.take();
|
||||
} catch (InterruptedException e) {
|
||||
if (!stopped.get()) {
|
||||
LOG.error("Returning, interrupted : " + e);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -234,7 +238,10 @@ public class RMContainerAllocator extends RMContainerRequestor
|
|||
|
||||
@Override
|
||||
public void stop() {
|
||||
this.stopEventHandling = true;
|
||||
if (stopped.getAndSet(true)) {
|
||||
// return if already stopped
|
||||
return;
|
||||
}
|
||||
eventHandlingThread.interrupt();
|
||||
super.stop();
|
||||
LOG.info("Final Stats: " + getStat());
|
||||
|
|
|
@ -23,6 +23,7 @@ import java.util.concurrent.LinkedBlockingQueue;
|
|||
import java.util.concurrent.ThreadFactory;
|
||||
import java.util.concurrent.ThreadPoolExecutor;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
@ -43,10 +44,12 @@ public class TaskCleanerImpl extends AbstractService implements TaskCleaner {
|
|||
private Thread eventHandlingThread;
|
||||
private BlockingQueue<TaskCleanupEvent> eventQueue =
|
||||
new LinkedBlockingQueue<TaskCleanupEvent>();
|
||||
private final AtomicBoolean stopped;
|
||||
|
||||
public TaskCleanerImpl(AppContext context) {
|
||||
super("TaskCleaner");
|
||||
this.context = context;
|
||||
this.stopped = new AtomicBoolean(false);
|
||||
}
|
||||
|
||||
public void start() {
|
||||
|
@ -59,11 +62,13 @@ public class TaskCleanerImpl extends AbstractService implements TaskCleaner {
|
|||
@Override
|
||||
public void run() {
|
||||
TaskCleanupEvent event = null;
|
||||
while (!Thread.currentThread().isInterrupted()) {
|
||||
while (!stopped.get() && !Thread.currentThread().isInterrupted()) {
|
||||
try {
|
||||
event = eventQueue.take();
|
||||
} catch (InterruptedException e) {
|
||||
if (!stopped.get()) {
|
||||
LOG.error("Returning, interrupted : " + e);
|
||||
}
|
||||
return;
|
||||
}
|
||||
// the events from the queue are handled in parallel
|
||||
|
@ -77,6 +82,10 @@ public class TaskCleanerImpl extends AbstractService implements TaskCleaner {
|
|||
}
|
||||
|
||||
public void stop() {
|
||||
if (stopped.getAndSet(true)) {
|
||||
// return if already stopped
|
||||
return;
|
||||
}
|
||||
eventHandlingThread.interrupt();
|
||||
launcherPool.shutdown();
|
||||
super.stop();
|
||||
|
|
Loading…
Reference in New Issue