按照艺术家分组并输出某个艺术家的唯一键-值对
Posted 杨鑫newlfe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按照艺术家分组并输出某个艺术家的唯一键-值对相关的知识,希望对你有一定的参考价值。
<strong><span style="font-size:18px;">/*** * @author YangXin * @info 按照艺术家分组并输出某个艺术家的唯一键-值对 * Mapper输出艺术家,而Reducer只输出唯一的艺术家并丢弃空的字符值。 */ package unitTwelve; import java.io.IOException; import org.apache.hadoop.io.IntWritable; import org.apache.hadoop.io.Text; import org.apache.hadoop.mapreduce.Reducer; public class DirectoryReducer extends Reducer<Text, IntWritable, Text, IntWritable>{ @Override protected void reduce(Text artist, Iterable<IntWritable> values, Context context) throws IOException, InterruptedException{ context.write(artist, new IntWritable(0)); } } </span></strong>
以上是关于按照艺术家分组并输出某个艺术家的唯一键-值对的主要内容,如果未能解决你的问题,请参考以下文章