MAPREDUCE-5335. Rename Job Tracker terminology in ShuffleSchedulerImpl. Contributed by Devaraj K.
(cherry picked from commit b42d09eb62
)
This commit is contained in:
parent
c9c1d9a5a6
commit
9129b3415c
|
@ -46,6 +46,9 @@ Release 2.7.0 - UNRELEASED
|
|||
|
||||
MAPREDUCE-6253. Update use of Iterator to Iterable. (Ray Chiang via devaraj)
|
||||
|
||||
MAPREDUCE-5335. Rename Job Tracker terminology in ShuffleSchedulerImpl.
|
||||
(devaraj via ozawa)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
MAPREDUCE-6169. MergeQueue should release reference to the current item
|
||||
|
|
|
@ -274,7 +274,8 @@ public class ShuffleSchedulerImpl<K,V> implements ShuffleScheduler<K,V> {
|
|||
}
|
||||
}
|
||||
|
||||
checkAndInformJobTracker(failures, mapId, readError, connectExcpt, hostFail);
|
||||
checkAndInformMRAppMaster(failures, mapId, readError, connectExcpt,
|
||||
hostFail);
|
||||
|
||||
checkReducerHealth();
|
||||
|
||||
|
@ -299,15 +300,15 @@ public class ShuffleSchedulerImpl<K,V> implements ShuffleScheduler<K,V> {
|
|||
reporter.reportException(ioe);
|
||||
}
|
||||
|
||||
// Notify the JobTracker
|
||||
// Notify the MRAppMaster
|
||||
// after every read error, if 'reportReadErrorImmediately' is true or
|
||||
// after every 'maxFetchFailuresBeforeReporting' failures
|
||||
private void checkAndInformJobTracker(
|
||||
private void checkAndInformMRAppMaster(
|
||||
int failures, TaskAttemptID mapId, boolean readError,
|
||||
boolean connectExcpt, boolean hostFailed) {
|
||||
if (connectExcpt || (reportReadErrorImmediately && readError)
|
||||
|| ((failures % maxFetchFailuresBeforeReporting) == 0) || hostFailed) {
|
||||
LOG.info("Reporting fetch failure for " + mapId + " to jobtracker.");
|
||||
LOG.info("Reporting fetch failure for " + mapId + " to MRAppMaster.");
|
||||
status.addFetchFailedMap((org.apache.hadoop.mapred.TaskAttemptID) mapId);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue