我是靠谱客的博主 有魅力咖啡,这篇文章主要介绍MapReduce中map方法write写入参数类型和reduce类型不同,现在分享给大家,希望可以做个参考。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
当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类型不同内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部