Skip to content

Commit

Permalink
#70 make types match up in Tool
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhoule committed Nov 21, 2013
1 parent 16dd585 commit 6c317c5
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 69 deletions.
117 changes: 51 additions & 66 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ public int run(String[] arg0) throws Exception {
job.setNumReduceTasks(reduceTasks);

job.setMapOutputKeyClass(TaggedTextItem.class);
job.setMapOutputValueClass(VIntWritable.class);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(NullWritable.class);
job.setMapOutputValueClass(TaggedTextItem.class);
job.setOutputKeyClass(NullWritable.class);
job.setOutputValueClass(Text.class);


FileInputFormat.addInputPath(job, new Path(inputA));
Expand Down

0 comments on commit 6c317c5

Please sign in to comment.