Author: shv
Date: Thu Apr 11 20:32:14 2013
New Revision: 1467078

URL: http://svn.apache.org/r1467078
Log:
MAPREDUCE-4981. Add WordMean, WordMedian, WordStandardDeviation to 
ExamplesDriver. Contributed by Plamen Jeliazkov.

Modified:
    hadoop/common/branches/branch-2/hadoop-mapreduce-project/CHANGES.txt
    
hadoop/common/branches/branch-2/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/ExampleDriver.java

Modified: hadoop/common/branches/branch-2/hadoop-mapreduce-project/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-mapreduce-project/CHANGES.txt?rev=1467078&r1=1467077&r2=1467078&view=diff
==============================================================================
--- hadoop/common/branches/branch-2/hadoop-mapreduce-project/CHANGES.txt 
(original)
+++ hadoop/common/branches/branch-2/hadoop-mapreduce-project/CHANGES.txt Thu 
Apr 11 20:32:14 2013
@@ -33,6 +33,9 @@ Release 2.0.5-beta - UNRELEASED
     history, instaed of simulating state machine events.
     (Jason Lowe and Robert Parker via sseth)
 
+    MAPREDUCE-4981. Add WordMean, WordMedian, WordStandardDeviation
+    to ExamplesDriver. (Plamen Jeliazkov via shv)
+
   OPTIMIZATIONS
 
   BUG FIXES

Modified: 
hadoop/common/branches/branch-2/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/ExampleDriver.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/ExampleDriver.java?rev=1467078&r1=1467077&r2=1467078&view=diff
==============================================================================
--- 
hadoop/common/branches/branch-2/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/ExampleDriver.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/ExampleDriver.java
 Thu Apr 11 20:32:14 2013
@@ -38,6 +38,12 @@ public class ExampleDriver {
     try {
       pgd.addClass("wordcount", WordCount.class, 
                    "A map/reduce program that counts the words in the input 
files.");
+      pgd.addClass("wordmean", WordMean.class,
+                   "A map/reduce program that counts the average length of the 
words in the input files.");
+      pgd.addClass("wordmedian", WordMedian.class,
+                   "A map/reduce program that counts the median length of the 
words in the input files.");
+      pgd.addClass("wordstandarddeviation", WordStandardDeviation.class,
+                   "A map/reduce program that counts the standard deviation of 
the length of the words in the input files.");
       pgd.addClass("aggregatewordcount", AggregateWordCount.class, 
                    "An Aggregate based map/reduce program that counts the 
words in the input files.");
       pgd.addClass("aggregatewordhist", AggregateWordHistogram.class, 


Reply via email to