MAPREDUCE-3226. Fix shutdown of fetcher threads. Contributed by Vinod K V.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1187116 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6cd5a1b0f7
commit
02d5fa3e62
@ -1712,6 +1712,8 @@ Release 0.23.0 - Unreleased
|
||||
|
||||
MAPREDUCE-3188. Ensure correct shutdown in services. (todd via acmurthy)
|
||||
|
||||
MAPREDUCE-3226. Fix shutdown of fetcher threads. (vinodkv via acmurthy)
|
||||
|
||||
Release 0.22.0 - Unreleased
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -60,7 +60,7 @@ public void run() {
|
||||
LOG.info(reduce + " Thread started: " + getName());
|
||||
|
||||
try {
|
||||
while (true) {
|
||||
while (true && !Thread.currentThread().isInterrupted()) {
|
||||
try {
|
||||
int numNewMaps = getMapCompletionEvents();
|
||||
failures = 0;
|
||||
@ -68,7 +68,9 @@ public void run() {
|
||||
LOG.info(reduce + ": " + "Got " + numNewMaps + " new map-outputs");
|
||||
}
|
||||
LOG.debug("GetMapEventsThread about to sleep for " + SLEEP_TIME);
|
||||
if (!Thread.currentThread().isInterrupted()) {
|
||||
Thread.sleep(SLEEP_TIME);
|
||||
}
|
||||
} catch (IOException ie) {
|
||||
LOG.info("Exception in getting events", ie);
|
||||
// check to see whether to abort
|
||||
@ -76,9 +78,11 @@ public void run() {
|
||||
throw new IOException("too many failures downloading events", ie);
|
||||
}
|
||||
// sleep for a bit
|
||||
if (!Thread.currentThread().isInterrupted()) {
|
||||
Thread.sleep(RETRY_PERIOD);
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (InterruptedException e) {
|
||||
return;
|
||||
} catch (Throwable t) {
|
||||
|
@ -135,7 +135,7 @@ public Fetcher(JobConf job, TaskAttemptID reduceId,
|
||||
|
||||
public void run() {
|
||||
try {
|
||||
while (true) {
|
||||
while (true && !Thread.currentThread().isInterrupted()) {
|
||||
MapHost host = null;
|
||||
try {
|
||||
// If merge is on, block
|
||||
|
Loading…
Reference in New Issue
Block a user