HDFS-12619. Do not catch and throw unchecked exceptions if IBRs fail to process. Contributed by Wei-Chiu Chuang.
(cherry picked from commit 4ab0c8f96a41c573cc1f1e71c18871d243f952b9)
This commit is contained in:
parent
a47e8e660f
commit
3ed7a2ca42
@ -3443,11 +3443,15 @@ public void processIncrementalBlockReport(final DatanodeID nodeID,
|
|||||||
throw new IOException(
|
throw new IOException(
|
||||||
"Got incremental block report from unregistered or dead node");
|
"Got incremental block report from unregistered or dead node");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
boolean successful = false;
|
||||||
try {
|
try {
|
||||||
processIncrementalBlockReport(node, srdb);
|
processIncrementalBlockReport(node, srdb);
|
||||||
} catch (Exception ex) {
|
successful = true;
|
||||||
node.setForceRegistration(true);
|
} finally {
|
||||||
throw ex;
|
if (!successful) {
|
||||||
|
node.setForceRegistration(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user