当map方法中context.write()和reduce方法中context.write()输入参数类型不相同时:
需要在job中设置每个方法的参数类型:
map中:
context.write(MyNewKey,NullWritable);
reduce中:
context.write(LongWritable,LongWritable);
那么进行如下设置即可:
job.setMapOutputKeyClass(MyNewKey.class);
job.setMapOutputValueClass(NullWritable.class);
job.setOutputKeyClass(LongWritable.class);
job.setOutputValueClass(LongWritable.class);
最后
以上就是有魅力咖啡最近收集整理的关于MapReduce中map方法write写入参数类型和reduce类型不同的全部内容,更多相关MapReduce中map方法write写入参数类型和reduce类型不同内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复