gpt4 book ai didi

hadoop - MapReduce 与 Hadoop : Type mismatch in key from map

转载 作者:可可西里 更新时间:2023-11-01 15:03:26 24 4
gpt4 key购买 nike

我正在运行一个简单的 wordcount 程序,但出现以下错误:

Type mismatch in key from map: expected org.apache.hadoop.io.Text, received org.apache.hadoop.io.LongWritable

这是什么意思,我该如何纠正?

最佳答案

您可以在主函数中使用以下任一行:

 conf.setMapOutputKeyClass(Text.class);
conf.setMapOutputValueClass(IntWritable.class);

假设您正在使用 JobConf conf;

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

假设您正在使用 Job job = new Job();

关于hadoop - MapReduce 与 Hadoop : Type mismatch in key from map,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11023399/

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