Skip to content

Commit

Permalink
Merge pull request #1 from randallwhitman/altcalcs
Browse files Browse the repository at this point in the history
TripCorrDrv: match job.setOutputValueClass to reducer
  • Loading branch information
randallwhitman committed Jul 16, 2013
2 parents 831f993 + f1c13b3 commit 6e5bc1f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static void main(String[] init_args) throws Exception {
job.setJobName("Automobile Trip Origin & Destination by Grid Cell");
job.setOutputKeyClass(Text.class);
job.setMapOutputValueClass(TripCorrWrit.class);
job.setOutputValueClass(DoubleWritable.class);
job.setOutputValueClass(Text.class);

job.setMapperClass(TripCorrMap.class);
job.setReducerClass(TripCorrRed.class);
Expand Down

0 comments on commit 6e5bc1f

Please sign in to comment.