HDFS-9886. Configuration properties for hedged read is broken. Contributed by Akira AJISAKA.

This commit is contained in:
Zhe Zhang 2016-03-02 10:26:06 -08:00
parent 7b9a2bf278
commit 7dfe40a23b
2 changed files with 5 additions and 0 deletions

View File

@ -377,6 +377,8 @@ interface Mmap {
/** dfs.client.hedged.read configuration properties */
interface HedgedRead {
String PREFIX = HdfsClientConfigKeys.PREFIX + "hedged.read.";
String THRESHOLD_MILLIS_KEY = PREFIX + "threshold.millis";
long THRESHOLD_MILLIS_DEFAULT = 500;
String THREADPOOL_SIZE_KEY = PREFIX + "threadpool.size";

View File

@ -1828,6 +1828,9 @@ Release 2.8.0 - UNRELEASED
HDFS-9881. DistributedFileSystem#getTrashRoot returns incorrect path for
encryption zones. (wang)
HDFS-9886. Configuration properties for hedged read is broken.
(Akira AJISAKA via zhz)
Release 2.7.3 - UNRELEASED
INCOMPATIBLE CHANGES