HDFS-9886. Configuration properties for hedged read is broken. Contributed by Akira AJISAKA.
This commit is contained in:
parent
3fecfe1352
commit
b97ac02c4b
|
@ -377,6 +377,8 @@ public interface HdfsClientConfigKeys {
|
||||||
|
|
||||||
/** dfs.client.hedged.read configuration properties */
|
/** dfs.client.hedged.read configuration properties */
|
||||||
interface HedgedRead {
|
interface HedgedRead {
|
||||||
|
String PREFIX = HdfsClientConfigKeys.PREFIX + "hedged.read.";
|
||||||
|
|
||||||
String THRESHOLD_MILLIS_KEY = PREFIX + "threshold.millis";
|
String THRESHOLD_MILLIS_KEY = PREFIX + "threshold.millis";
|
||||||
long THRESHOLD_MILLIS_DEFAULT = 500;
|
long THRESHOLD_MILLIS_DEFAULT = 500;
|
||||||
String THREADPOOL_SIZE_KEY = PREFIX + "threadpool.size";
|
String THREADPOOL_SIZE_KEY = PREFIX + "threadpool.size";
|
||||||
|
|
|
@ -1920,6 +1920,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
HDFS-9881. DistributedFileSystem#getTrashRoot returns incorrect path for
|
HDFS-9881. DistributedFileSystem#getTrashRoot returns incorrect path for
|
||||||
encryption zones. (wang)
|
encryption zones. (wang)
|
||||||
|
|
||||||
|
HDFS-9886. Configuration properties for hedged read is broken.
|
||||||
|
(Akira AJISAKA via zhz)
|
||||||
|
|
||||||
Release 2.7.3 - UNRELEASED
|
Release 2.7.3 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
Loading…
Reference in New Issue