HDFS-12744. More logs when short-circuit read is failed and disabled. Contributed by Weiwei Yang.
This commit is contained in:
parent
20304b91cc
commit
56b88b0670
|
@ -646,7 +646,8 @@ public class BlockReaderFactory implements ShortCircuitReplicaCreator {
|
|||
default:
|
||||
LOG.warn(this + ": unknown response code " + resp.getStatus() +
|
||||
" while attempting to set up short-circuit access. " +
|
||||
resp.getMessage());
|
||||
resp.getMessage() + ". Disabling short-circuit read for DataNode "
|
||||
+ datanode + " temporarily.");
|
||||
clientContext.getDomainSocketFactory()
|
||||
.disableShortCircuitForPath(pathInfo.getPath());
|
||||
return null;
|
||||
|
|
|
@ -387,6 +387,8 @@ class DataXceiver extends Receiver implements Runnable {
|
|||
} catch (IOException e) {
|
||||
bld.setStatus(ERROR);
|
||||
bld.setMessage(e.getMessage());
|
||||
LOG.error("Request short-circuit read file descriptor" +
|
||||
" failed with unknown error.", e);
|
||||
}
|
||||
bld.build().writeDelimitedTo(socketOut);
|
||||
if (fis != null) {
|
||||
|
|
Loading…
Reference in New Issue