HDFS-9886. Configuration properties for hedged read is broken. Contributed by Akira AJISAKA.
This commit is contained in:
parent
480302b4ba
commit
67880ccae6
|
@ -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";
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue