HDFS-12619. Do not catch and throw unchecked exceptions if IBRs fail to process. Contributed by Wei-Chiu Chuang.

(cherry picked from commit 4ab0c8f96a)
This commit is contained in:
Wei-Chiu Chuang 2017-10-19 06:17:59 -07:00 committed by vrushali
parent a47e8e660f
commit 3ed7a2ca42
1 changed files with 7 additions and 3 deletions

View File

@ -3443,11 +3443,15 @@ public class BlockManager implements BlockStatsMXBean {
throw new IOException(
"Got incremental block report from unregistered or dead node");
}
boolean successful = false;
try {
processIncrementalBlockReport(node, srdb);
} catch (Exception ex) {
successful = true;
} finally {
if (!successful) {
node.setForceRegistration(true);
throw ex;
}
}
}