HDFS-7401. Add block info to DFSInputStream' WARN message when it adds node to deadNodes (Contributed by Arshad Mohammad)
(cherry picked from commit b75df697e0
)
This commit is contained in:
parent
e7b81710dd
commit
983c1d3969
|
@ -482,6 +482,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
HDFS-8407. hdfsListDirectory must set errno to 0 on success (Masatake
|
HDFS-8407. hdfsListDirectory must set errno to 0 on success (Masatake
|
||||||
Iwasaki via Colin P. McCabe)
|
Iwasaki via Colin P. McCabe)
|
||||||
|
|
||||||
|
HDFS-7401. Add block info to DFSInputStream' WARN message when it adds
|
||||||
|
node to deadNodes (Arshad Mohammad via vinayakumarb)
|
||||||
|
|
||||||
Release 2.7.1 - UNRELEASED
|
Release 2.7.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -632,7 +632,7 @@ implements ByteBufferReadable, CanSetDropBehind, CanSetReadahead,
|
||||||
} else {
|
} else {
|
||||||
connectFailedOnce = true;
|
connectFailedOnce = true;
|
||||||
DFSClient.LOG.warn("Failed to connect to " + targetAddr + " for block "
|
DFSClient.LOG.warn("Failed to connect to " + targetAddr + " for block "
|
||||||
+ ", add to deadNodes and continue. " + ex, ex);
|
+targetBlock.getBlock()+ ", add to deadNodes and continue. " + ex, ex);
|
||||||
// Put chosen node into dead list, continue
|
// Put chosen node into dead list, continue
|
||||||
addToDeadNodes(chosenNode);
|
addToDeadNodes(chosenNode);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue