gpt4 book ai didi

java - MapReduce IOException

转载 作者:行者123 更新时间:2023-12-02 22:03:09 28 4
gpt4 key购买 nike

我为MapReduce文本排序编写了这样的代码:

public static class SortMapper extends Mapper<Object, Text, Text, Text> {
private Text citizenship = new Text();

@Override
public void map(Object key, Text value, Context context) throws IOException, InterruptedException {
citizenship.set(value.toString().split(",")[11]);
context.write(citizenship, value);
}
}

public static class PrintReducer extends Reducer<Text, Text, NullWritable, Text> {

@Override
protected void reduce(Text key, Iterable<Text> values, Context context) throws IOException, InterruptedException {
Iterator<Text> valIt = values.iterator();

while (valIt.hasNext()) {
Text value = valIt.next();
context.write(NullWritable.get(), value);
}
}
}

public static void main(String[] args) throws Exception {
Configuration conf = new Configuration();
Job job = Job.getInstance(conf, "Football Sort");
job.setJarByClass(FootballSort.class);
job.setMapperClass(SortMapper.class);
job.setCombinerClass(PrintReducer.class);
job.setReducerClass(PrintReducer.class);
job.setMapOutputKeyClass(Text.class);
job.setMapOutputValueClass(Text.class);
job.setOutputKeyClass(NullWritable.class);
job.setOutputValueClass(Text.class);
FileInputFormat.addInputPath(job, new Path(args[0]));
FileOutputFormat.setOutputPath(job, new Path(args[1]));
System.exit(job.waitForCompletion(true) ? 0 : 1);
}

但它总是能捕获

IOException in lines 26, 34 reason: class org.apache.hadoop.io.NullWritable is not class org.apache.hadoop.io.Text

最佳答案

您的mapper outputformat与您的代码不匹配,在您的main方法中,设置输出TEXT

job.setMapOutputKeyClass(Text.class);
job.setMapOutputValueClass(Text.class);

但在您的映射器 public static class PrintReducer extends Reducer<Text, Text, NullWritable, Text>中,将其设置为 NullWritable TEXT

关于java - MapReduce IOException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47148076/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com