HDFS-15074. DataNode.DataTransfer thread should catch all the expception and log it. Contributed by hemanthboyina.
This commit is contained in:
parent
454a0c2913
commit
55510d32bf
|
@ -2594,6 +2594,8 @@ public class DataNode extends ReconfigurableBase
|
|||
handleBadBlock(b, ie, false);
|
||||
LOG.warn("{}:Failed to transfer {} to {} got",
|
||||
bpReg, b, targets[0], ie);
|
||||
} catch (Throwable t) {
|
||||
LOG.error("Failed to transfer block " + b, t);
|
||||
} finally {
|
||||
decrementXmitsInProgress();
|
||||
IOUtils.closeStream(blockSender);
|
||||
|
|
Loading…
Reference in New Issue