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 480302b4ba
commit 67880ccae6
2 changed files with 5 additions and 0 deletions

View File

@ -373,6 +373,8 @@ public interface HdfsClientConfigKeys {
/** 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

@ -2873,6 +2873,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