Repository: hadoop
Updated Branches:
  refs/heads/branch-2 01991876e -> 2e13e5b25


HDFS-8633. Fix setting of dfs.datanode.readahead.bytes in hdfs-default.xml to 
match DFSConfigKeys. Contributed by Ray Chiang.

(cherry picked from commit b42f1ec13d0a837f188cf424a8dd177720478cc9)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/2e13e5b2
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/2e13e5b2
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/2e13e5b2

Branch: refs/heads/branch-2
Commit: 2e13e5b253b25458986326bb55d0d7daa03c4bf0
Parents: 0199187
Author: Yongjun Zhang <[email protected]>
Authored: Fri Jun 19 09:47:31 2015 -0700
Committer: Yongjun Zhang <[email protected]>
Committed: Fri Jun 19 09:50:14 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/2e13e5b2/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 001c9b2..bc9af2c 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
+++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
@@ -720,6 +720,9 @@ Release 2.7.1 - UNRELEASED
 
     HDFS-4660. Block corruption can happen during pipeline recovery (kihwal)
 
+    HDFS-8633. Fix setting of dfs.datanode.readahead.bytes in hdfs-default.xml
+    to match DFSConfigKeys. (Ray Chiang via Yongjun Zhang)
+
 Release 2.7.0 - 2015-04-20
 
   INCOMPATIBLE CHANGES

http://git-wip-us.apache.org/repos/asf/hadoop/blob/2e13e5b2/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 e281248..5011075 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
@@ -1079,7 +1079,7 @@
 
 <property>
   <name>dfs.datanode.readahead.bytes</name>
-  <value>4193404</value>
+  <value>4194304</value>
   <description>
         While reading block files, if the Hadoop native libraries are 
available,
         the datanode can use the posix_fadvise system call to explicitly

Reply via email to