You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-commits@hadoop.apache.org by cd...@apache.org on 2009/12/04 04:12:20 UTC

svn commit: r887045 - in /hadoop/mapreduce/branches/branch-0.21: CHANGES.txt src/java/mapred-default.xml

Author: cdouglas
Date: Fri Dec  4 03:12:20 2009
New Revision: 887045

URL: http://svn.apache.org/viewvc?rev=887045&view=rev
Log:
MAPREDUCE-1249. Update config default value for socket read timeout to
match code default. Contributed by Amareshwari Sriramadasu

Modified:
    hadoop/mapreduce/branches/branch-0.21/CHANGES.txt
    hadoop/mapreduce/branches/branch-0.21/src/java/mapred-default.xml

Modified: hadoop/mapreduce/branches/branch-0.21/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/mapreduce/branches/branch-0.21/CHANGES.txt?rev=887045&r1=887044&r2=887045&view=diff
==============================================================================
--- hadoop/mapreduce/branches/branch-0.21/CHANGES.txt (original)
+++ hadoop/mapreduce/branches/branch-0.21/CHANGES.txt Fri Dec  4 03:12:20 2009
@@ -845,3 +845,5 @@
     MAPREDUCE-787. Fix JobSubmitter to honor user given symlink path.
     (Amareshwari Sriramadasu via sharad)
 
+    MAPREDUCE-1249. Update config default value for socket read timeout to
+    match code default. (Amareshwari Sriramadasu via cdouglas)

Modified: hadoop/mapreduce/branches/branch-0.21/src/java/mapred-default.xml
URL: http://svn.apache.org/viewvc/hadoop/mapreduce/branches/branch-0.21/src/java/mapred-default.xml?rev=887045&r1=887044&r2=887045&view=diff
==============================================================================
--- hadoop/mapreduce/branches/branch-0.21/src/java/mapred-default.xml (original)
+++ hadoop/mapreduce/branches/branch-0.21/src/java/mapred-default.xml Fri Dec  4 03:12:20 2009
@@ -285,18 +285,17 @@
 <property>
   <name>mapreduce.reduce.shuffle.connect.timeout</name>
   <value>180000</value>
-  <description>Expert: Cluster-wide configuration. The maximum amount of
-  time (in milli seconds) reduce task spends in trying to connect to a
-  tasktracker for getting map output.
+  <description>Expert: The maximum amount of time (in milli seconds) reduce
+  task spends in trying to connect to a tasktracker for getting map output.
   </description>
 </property>
 
 <property>
   <name>mapreduce.reduce.shuffle.read.timeout</name>
-  <value>30000</value>
-  <description>Expert: Cluster-wide configuration. The maximum amount of time
-  (in milli seconds) reduce task waits for map output data to be available
-  for reading after obtaining connection.
+  <value>180000</value>
+  <description>Expert: The maximum amount of time (in milli seconds) reduce
+  task waits for map output data to be available for reading after obtaining
+  connection.
   </description>
 </property>