Hadoop MapReduce总排序字数

时间:2015-09-03 15:12:26

标签: java hadoop mapreduce

我想在mapreduce字数统计中进行全面排序。

public int run(String[] args) throws Exception {
  Job job = Job.getInstance(getConf(), "wordcount");
  job.setJarByClass(this.getClass());
  FileInputFormat.addInputPath(job, new Path(args[0]));
  FileOutputFormat.setOutputPath(job, new Path(args[1]));
  job.setMapperClass(Map.class);

  //Total Sort
  job.setPartitionerClass(TotalOrderPartitioner.class);
  InputSampler.Sampler<Text, IntWritable> sampler = new InputSampler.RandomSampler<Text, IntWritable>(0.1, 10000, 10);
  InputSampler.writePartitionFile(job, sampler);
  Path inputDir = new Path(args[2] + "/_tmp");
  Path partitionFile = new Path(inputDir, "_partitioning");
  TotalOrderPartitioner.setPartitionFile(job.getConfiguration(),partitionFile);
  InputSampler.writePartitionFile(job, sampler);

  job.setReducerClass(Reduce.class);
  job.setOutputKeyClass(Text.class);
  job.setOutputValueClass(IntWritable.class);  

  return job.waitForCompletion(true) ? 0 : 1;
}

但我得到的错误如java.io.IOException: wrong key class: org.apache.hadoop.io.Text is not class org.apache.hadoop.io.LongWritable

我不了解InputSampler.RandomSampler的工作原理。

1 个答案:

答案 0 :(得分:0)

在上面的代码中,没有为作业设置InputFormat,因此默认值为TextInputFormat<LongWritable,Text>

对于InputSampler.RandomSampler<Text, IntWritable>,它已被配置为 Text,IntWritable ,它与TextInputFormat不匹配。

由于InputFormatInputSampler之间存在类型不匹配,因此会抛出错误。

相关问题