WordCount.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. package org.apache.hadoop.examples;
  2. import java.io.IOException;
  3. import java.util.StringTokenizer;
  4. import org.apache.hadoop.conf.Configuration;
  5. import org.apache.hadoop.fs.Path;
  6. import org.apache.hadoop.io.IntWritable;
  7. import org.apache.hadoop.io.Text;
  8. import org.apache.hadoop.mapreduce.Job;
  9. import org.apache.hadoop.mapreduce.Mapper;
  10. import org.apache.hadoop.mapreduce.Reducer;
  11. import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
  12. import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
  13. import org.apache.hadoop.util.GenericOptionsParser;
  14. public class WordCount {
  15.   public static class TokenizerMapper 
  16.        extends Mapper<Object, Text, Text, IntWritable>{
  17.     
  18.     private final static IntWritable one = new IntWritable(1);
  19.     private Text word = new Text();
  20.       
  21.     public void map(Object key, Text value, Context context
  22.                     ) throws IOException, InterruptedException {
  23.       StringTokenizer itr = new StringTokenizer(value.toString());
  24.       while (itr.hasMoreTokens()) {
  25.         word.set(itr.nextToken());
  26.         context.write(word, one);
  27.       }
  28.     }
  29.   }
  30.   
  31.   public static class IntSumReducer 
  32.        extends Reducer<Text,IntWritable,Text,IntWritable> {
  33.     private IntWritable result = new IntWritable();
  34.     public void reduce(Text key, Iterable<IntWritable> values, 
  35.                        Context context
  36.                        ) throws IOException, InterruptedException {
  37.       int sum = 0;
  38.       for (IntWritable val : values) {
  39.         sum += val.get();
  40.       }
  41.       result.set(sum);
  42.       context.write(key, result);
  43.     }
  44.   }
  45.   public static void main(String[] args) throws Exception {
  46.     Configuration conf = new Configuration();
  47.     String[] otherArgs = new GenericOptionsParser(conf, args).getRemainingArgs();
  48.     if (otherArgs.length != 2) {
  49.       System.err.println("Usage: wordcount <in> <out>");
  50.       System.exit(2);
  51.     }
  52.     Job job = new Job(conf, "word count");
  53.     job.setJarByClass(WordCount.class);
  54.     job.setMapperClass(TokenizerMapper.class);
  55.     job.setCombinerClass(IntSumReducer.class);
  56.     job.setReducerClass(IntSumReducer.class);
  57.     job.setOutputKeyClass(Text.class);
  58.     job.setOutputValueClass(IntWritable.class);
  59.     FileInputFormat.addInputPath(job, new Path(otherArgs[0]));
  60.     FileOutputFormat.setOutputPath(job, new Path(otherArgs[1]));
  61.     System.exit(job.waitForCompletion(true) ? 0 : 1);
  62.   }
  63. }