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 sh...@apache.org on 2009/07/09 10:06:49 UTC

svn commit: r792439 - in /hadoop/mapreduce/trunk: CHANGES.txt src/benchmarks/gridmix2/generateGridmix2data.sh

Author: sharad
Date: Thu Jul  9 08:06:49 2009
New Revision: 792439

URL: http://svn.apache.org/viewvc?rev=792439&view=rev
Log:
HADOOP-6090. Updates gridmix script to use new mapreduce api output format. Contributed by Amareshwari Sriramadasu.

Modified:
    hadoop/mapreduce/trunk/CHANGES.txt
    hadoop/mapreduce/trunk/src/benchmarks/gridmix2/generateGridmix2data.sh

Modified: hadoop/mapreduce/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/mapreduce/trunk/CHANGES.txt?rev=792439&r1=792438&r2=792439&view=diff
==============================================================================
--- hadoop/mapreduce/trunk/CHANGES.txt (original)
+++ hadoop/mapreduce/trunk/CHANGES.txt Thu Jul  9 08:06:49 2009
@@ -153,3 +153,5 @@
     high memory jobs in capacity scheduler.
     (Vinod Kumar Vavilapalli via yhemanth)
 
+    HADOOP-6090. Updates gridmix script to use new mapreduce api output 
+    format. (Amareshwari Sriramadasu via sharad)

Modified: hadoop/mapreduce/trunk/src/benchmarks/gridmix2/generateGridmix2data.sh
URL: http://svn.apache.org/viewvc/hadoop/mapreduce/trunk/src/benchmarks/gridmix2/generateGridmix2data.sh?rev=792439&r1=792438&r2=792439&view=diff
==============================================================================
--- hadoop/mapreduce/trunk/src/benchmarks/gridmix2/generateGridmix2data.sh (original)
+++ hadoop/mapreduce/trunk/src/benchmarks/gridmix2/generateGridmix2data.sh Thu Jul  9 08:06:49 2009
@@ -61,7 +61,7 @@
   -D test.randomtextwrite.max_words_value=10000 \
   -D mapred.output.compress=true \
   -D mapred.map.output.compression.type=BLOCK \
-  -outFormat org.apache.hadoop.mapred.SequenceFileOutputFormat \
+  -outFormat org.apache.hadoop.mapreduce.lib.output.SequenceFileOutputFormat \
   ${VARCOMPSEQ} &
 
 
@@ -75,7 +75,7 @@
   -D test.randomtextwrite.max_words_value=100 \
   -D mapred.output.compress=true \
   -D mapred.map.output.compression.type=BLOCK \
-  -outFormat org.apache.hadoop.mapred.SequenceFileOutputFormat \
+  -outFormat org.apache.hadoop.mapreduce.lib.output.SequenceFileOutputFormat \
   ${FIXCOMPSEQ} &
 
 
@@ -88,7 +88,7 @@
   -D test.randomtextwrite.min_words_value=0 \
   -D test.randomtextwrite.max_words_value=200 \
   -D mapred.output.compress=false \
-  -outFormat org.apache.hadoop.mapred.TextOutputFormat \
+  -outFormat org.apache.hadoop.mapreduce.lib.output.TextOutputFormat \
   ${VARINFLTEXT} &