按照艺术家分组并输出某个艺术家的唯一键-值对

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>


以上是关于按照艺术家分组并输出某个艺术家的唯一键-值对的主要内容,如果未能解决你的问题,请参考以下文章

从数据集输出艺术家

从数据集输出艺术家

带有分页和分组的 Django ListView

使用 Spotify 中 sp.albums 的 .json 输出从同一艺术家的多个专辑中获取曲目 ID

根据一对多关系的值对集合进行排序

Spotify 搜索栏 api,允许用户搜索艺术家并接收艺术家排名前 5 的专辑