Repository: hadoop Updated Branches: refs/heads/branch-2 cc8093e5a -> 2e55226ef
HDFS-9274. Default value of dfs.datanode.directoryscan.throttle.limit.ms.per.sec should be consistent. Contributed by Yi Liu. Change-Id: Iafa2efb8f2eafd193b417690cc8794080b9d745b Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/2e55226e Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/2e55226e Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/2e55226e Branch: refs/heads/branch-2 Commit: 2e55226ef5c1634faeccbe1e4b02b78f9a956a86 Parents: cc8093e Author: Zhe Zhang <[email protected]> Authored: Wed Oct 21 14:03:12 2015 -0700 Committer: Zhe Zhang <[email protected]> Committed: Wed Oct 21 14:07:08 2015 -0700 ---------------------------------------------------------------------- hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 3 +++ .../hadoop-hdfs/src/main/resources/hdfs-default.xml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/2e55226e/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index f17f460..5739f6b 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -1268,6 +1268,9 @@ Release 2.8.0 - UNRELEASED HDFS-3059. ssl-server.xml causes NullPointer. (Xiao Chen via wang) + HDFS-9274. Default value of dfs.datanode.directoryscan.throttle.limit.ms.per.sec + should be consistent. (Yi Liu via zhz) + Release 2.7.2 - UNRELEASED INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/2e55226e/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/hdfs-default.xml ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/hdfs-default.xml b/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/hdfs-default.xml index efe5b2a..594ea23 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/hdfs-default.xml +++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/hdfs-default.xml @@ -637,7 +637,7 @@ <property> <name>dfs.datanode.directoryscan.throttle.limit.ms.per.sec</name> - <value>0</value> + <value>1000</value> <description>The report compilation threads are limited to only running for a given number of milliseconds per second, as configured by the property. The limit is taken per thread, not in aggregate, e.g. setting
