MAPREDUCE-5613. DefaultSpeculator holds and checks hashmap that is alway empty (Gera Shegalov via Sandy Ryza)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1541435 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1884c3a0b9
commit
5653892571
|
@ -30,6 +30,9 @@ Release 2.3.0 - UNRELEASED
|
||||||
MAPREDUCE-1176. FixedLengthInputFormat and FixedLengthRecordReader
|
MAPREDUCE-1176. FixedLengthInputFormat and FixedLengthRecordReader
|
||||||
(Mariappan Asokan and BitsOfInfo via Sandy Ryza)
|
(Mariappan Asokan and BitsOfInfo via Sandy Ryza)
|
||||||
|
|
||||||
|
MAPREDUCE-5613. DefaultSpeculator holds and checks hashmap that is always
|
||||||
|
empty (Gera Shegalov via Sandy Ryza)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
MAPREDUCE-5484. YarnChild unnecessarily loads job conf twice (Sandy Ryza)
|
MAPREDUCE-5484. YarnChild unnecessarily loads job conf twice (Sandy Ryza)
|
||||||
|
|
|
@ -28,7 +28,6 @@ import java.util.concurrent.ConcurrentHashMap;
|
||||||
import java.util.concurrent.ConcurrentMap;
|
import java.util.concurrent.ConcurrentMap;
|
||||||
import java.util.concurrent.LinkedBlockingQueue;
|
import java.util.concurrent.LinkedBlockingQueue;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
|
@ -75,9 +74,6 @@ public class DefaultSpeculator extends AbstractService implements
|
||||||
private final ConcurrentMap<TaskId, Boolean> runningTasks
|
private final ConcurrentMap<TaskId, Boolean> runningTasks
|
||||||
= new ConcurrentHashMap<TaskId, Boolean>();
|
= new ConcurrentHashMap<TaskId, Boolean>();
|
||||||
|
|
||||||
private final Map<Task, AtomicBoolean> pendingSpeculations
|
|
||||||
= new ConcurrentHashMap<Task, AtomicBoolean>();
|
|
||||||
|
|
||||||
// Used to track any TaskAttempts that aren't heart-beating for a while, so
|
// Used to track any TaskAttempts that aren't heart-beating for a while, so
|
||||||
// that we can aggressively speculate instead of waiting for task-timeout.
|
// that we can aggressively speculate instead of waiting for task-timeout.
|
||||||
private final ConcurrentMap<TaskAttemptId, TaskAttemptHistoryStatistics>
|
private final ConcurrentMap<TaskAttemptId, TaskAttemptHistoryStatistics>
|
||||||
|
@ -328,13 +324,6 @@ public class DefaultSpeculator extends AbstractService implements
|
||||||
|
|
||||||
estimator.updateAttempt(reportedStatus, timestamp);
|
estimator.updateAttempt(reportedStatus, timestamp);
|
||||||
|
|
||||||
// If the task is already known to be speculation-bait, don't do anything
|
|
||||||
if (pendingSpeculations.get(task) != null) {
|
|
||||||
if (pendingSpeculations.get(task).get()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stateString.equals(TaskAttemptState.RUNNING.name())) {
|
if (stateString.equals(TaskAttemptState.RUNNING.name())) {
|
||||||
runningTasks.putIfAbsent(taskID, Boolean.TRUE);
|
runningTasks.putIfAbsent(taskID, Boolean.TRUE);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue