Author: tomwhite
Date: Mon Feb 28 05:25:49 2011
New Revision: 1075213
URL: http://svn.apache.org/viewvc?rev=1075213&view=rev
Log:
MAPREDUCE-1996. API: Reducer.reduce() method detail misstatement. Contributed
by Harsh J Chouraria.
Modified:
hadoop/mapreduce/trunk/CHANGES.txt
hadoop/mapreduce/trunk/src/java/org/apache/hadoop/mapred/Reducer.java
Modified: hadoop/mapreduce/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/mapreduce/trunk/CHANGES.txt?rev=1075213&r1=1075212&r2=1075213&view=diff
==============================================================================
--- hadoop/mapreduce/trunk/CHANGES.txt (original)
+++ hadoop/mapreduce/trunk/CHANGES.txt Mon Feb 28 05:25:49 2011
@@ -72,6 +72,9 @@ Trunk (unreleased changes)
MAPREDUCE-2311. Fix TestFairScheduler failure (schen)
+ MAPREDUCE-1996. API: Reducer.reduce() method detail misstatement.
+ (Harsh J Chouraria via tomwhite)
+
Release 0.22.0 - Unreleased
INCOMPATIBLE CHANGES
Modified: hadoop/mapreduce/trunk/src/java/org/apache/hadoop/mapred/Reducer.java
URL:
http://svn.apache.org/viewvc/hadoop/mapreduce/trunk/src/java/org/apache/hadoop/mapred/Reducer.java?rev=1075213&r1=1075212&r2=1075213&view=diff
==============================================================================
--- hadoop/mapreduce/trunk/src/java/org/apache/hadoop/mapred/Reducer.java
(original)
+++ hadoop/mapreduce/trunk/src/java/org/apache/hadoop/mapred/Reducer.java Mon
Feb 28 05:25:49 2011
@@ -186,7 +186,7 @@ public interface Reducer<K2, V2, K3, V3>
*
* <p>Applications can use the {@link Reporter} provided to report progress
* or just indicate that they are alive. In scenarios where the application
- * takes an insignificant amount of time to process individual key/value
+ * takes a significant amount of time to process individual key/value
* pairs, this is crucial since the framework might assume that the task has
* timed-out and kill that task. The other way of avoiding this is to set
* <a href="{@docRoot}/../mapred-default.html#mapreduce.task.timeout">