Browse Source

HADOOP-3247. Fix gridmix scripts to use the correct globbing syntax and
change maxentToSameCluster to run the correct number of jobs.
Contributed by Runping Qi.



git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/branches/branch-0.17@648441 13f79535-47bb-0310-9956-ffa450edef68

Christopher Douglas 17 years ago
parent
commit
75476e2d19

+ 4 - 0
CHANGES.txt

@@ -568,6 +568,10 @@ Release 0.17.0 - Unreleased
     HADOOP-3225. Unwrapping methods of RemoteException should initialize
     detailedMassage field. (Mahadev Konar, shv, cdouglas)
 
+    HADOOP-3247. Fix gridmix scripts to use the correct globbing syntax and
+    change maxentToSameCluster to run the correct number of jobs.
+    (Runping Qi via cdouglas)
+
 Release 0.16.3 - 2008-04-16
 
   BUG FIXES

+ 1 - 1
src/test/gridmix/submissionScripts/maxentToSameCluster

@@ -5,7 +5,7 @@ GRID_DIR=`cd "$GRID_DIR"; pwd`
 source $GRID_DIR/../gridmix-env
 PROCESSES=""
 
-for ((i=0; i < $NUM_OF_LARGE_JOBS_PER_CLASS; i++))
+for ((i=0; i < $NUM_OF_LARGE_JOBS_FOR_ENTROPY_CLASS; i++))
 do
     echo $i
     $GRID_MIX_HOME/maxent/maxent.large  2>&1 > maxent.large.$i.out &

+ 1 - 1
src/test/gridmix/webdatasort/webdata_sort.large

@@ -5,7 +5,7 @@ GRID_DIR=`cd "$GRID_DIR"; pwd`
 source $GRID_DIR/../gridmix-env
 
 NUM_OF_REDUCERS=$NUM_OF_REDUCERS_FOR_LARGE_JOB
-INDIR=${VARCOMPSEQ}/part-000*0,${VARCOMPSEQ}/part-000*1
+INDIR=${VARCOMPSEQ}/{part-000*0,part-000*1}
 Date=`date +%F-%H-%M-%S`
 
 OUTDIR=perf-out/webdata-sort-out-dir-large_$Date