MAPREDUCE-6797. Job history server scans can become blocked on a single, slow entry. Contributed by Prabhu Joseph
This commit is contained in:
parent
ff0b99eafe
commit
99c2bbd337
@ -231,16 +231,15 @@ public HistoryFileInfo addIfAbsent(HistoryFileInfo fileInfo) {
|
|||||||
JobId firstMoveFailedKey = null;
|
JobId firstMoveFailedKey = null;
|
||||||
int moveFailedCount = 0;
|
int moveFailedCount = 0;
|
||||||
|
|
||||||
while(cache.size() > maxSize && keys.hasNext()) {
|
while (cache.size() > maxSize && keys.hasNext()) {
|
||||||
JobId key = keys.next();
|
JobId key = keys.next();
|
||||||
HistoryFileInfo firstValue = cache.get(key);
|
HistoryFileInfo firstValue = cache.get(key);
|
||||||
if(firstValue != null) {
|
if (firstValue != null) {
|
||||||
synchronized(firstValue) {
|
|
||||||
if (firstValue.isMovePending()) {
|
if (firstValue.isMovePending()) {
|
||||||
if(firstValue.didMoveFail() &&
|
if (firstValue.didMoveFail() &&
|
||||||
firstValue.jobIndexInfo.getFinishTime() <= cutoff) {
|
firstValue.jobIndexInfo.getFinishTime() <= cutoff) {
|
||||||
cache.remove(key);
|
cache.remove(key);
|
||||||
//Now lets try to delete it
|
// Now lets try to delete it
|
||||||
try {
|
try {
|
||||||
firstValue.delete();
|
firstValue.delete();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
@ -265,7 +264,6 @@ public HistoryFileInfo addIfAbsent(HistoryFileInfo fileInfo) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
// Log output only for first jobhisotry in pendings to restrict
|
// Log output only for first jobhisotry in pendings to restrict
|
||||||
// the total number of logs.
|
// the total number of logs.
|
||||||
if (inIntermediateCount > 0) {
|
if (inIntermediateCount > 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user