HDFS-6448. BlockReaderLocalLegacy should set socket timeout based on conf.socketTimeout (liangxie via cmccabe)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1598080 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5757def1a1
commit
f8dd75e7e9
|
@ -283,6 +283,9 @@ Release 2.5.0 - UNRELEASED
|
||||||
HDFS-6227. ShortCircuitCache#unref should purge ShortCircuitReplicas whose
|
HDFS-6227. ShortCircuitCache#unref should purge ShortCircuitReplicas whose
|
||||||
streams have been closed by java interrupts. (Colin Patrick McCabe via jing9)
|
streams have been closed by java interrupts. (Colin Patrick McCabe via jing9)
|
||||||
|
|
||||||
|
HDFS-6448. BlockReaderLocalLegacy should set socket timeout based on
|
||||||
|
conf.socketTimeout (liangxie via cmccabe)
|
||||||
|
|
||||||
Release 2.4.1 - UNRELEASED
|
Release 2.4.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -187,7 +187,7 @@ class BlockReaderLocalLegacy implements BlockReader {
|
||||||
userGroupInformation = UserGroupInformation.getCurrentUser();
|
userGroupInformation = UserGroupInformation.getCurrentUser();
|
||||||
}
|
}
|
||||||
pathinfo = getBlockPathInfo(userGroupInformation, blk, node,
|
pathinfo = getBlockPathInfo(userGroupInformation, blk, node,
|
||||||
configuration, conf.hdfsTimeout, token,
|
configuration, conf.socketTimeout, token,
|
||||||
conf.connectToDnViaHostname);
|
conf.connectToDnViaHostname);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue