package org.one;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import java.io.IOException;
import java.util.*;
public class CleanMusicDriver {
public static void main(String[] args) throws IOException, InterruptedException, ClassNotFoundException {
Configuration conn = new Configuration();
Job job = Job.getInstance(conn);
job.setJarByClass(CleanMusicDriver.class);
job.setMapperClass(CleanMusicMapper.class);
job.setReducerClass(CleanMusicReduce.class);
job.setMapOutputKeyClass(Text.class);
job.setMapOutputValueClass(IntWritable.class);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(IntWritable.class);
FileInputFormat.addInputPath(job,new Path(args[0]));
FileOutputFormat.setOutputPath(job,new Path(args[1]));
System.exit(job.waitForCompletion(true)?0:1);
}
private static class CleanMusicMapper extends Mapper<LongWritable,Text,Text,IntWritable> {
@Override
protected void map(LongWritable key, Text value, Mapper<LongWritable, Text, Text, IntWritable>.Context context) throws IOException, InterruptedException {
if(key.get()==0){
return;
}
String[] strs = value.toString().split(",");
String genre=strs[3];
context.write(new Text(genre),new IntWritable(1));
}
}
private static class CleanMusicReduce extends Reducer<Text,IntWritable,Text,IntWritable> {
HashMap<String,Integer> hm = new HashMap<>();
@Override
protected void reduce(Text key, Iterable<IntWritable> values, Reducer<Text, IntWritable, Text, IntWritable>.Context context) throws IOException, InterruptedException {
int sum=0;
for (IntWritable value : values) {
sum++;
}
hm.put(key.toString(),sum);
}
@Override
protected void cleanup(Reducer<Text, IntWritable, Text, IntWritable>.Context context) throws IOException, InterruptedException {
ArrayList<Map.Entry<String, Integer>> ety = new ArrayList<>(hm.entrySet());
Collections.sort(ety, new Comparator<Map.Entry<String, Integer>>() {
@Override
public int compare(Map.Entry<String, Integer> o1, Map.Entry<String, Integer> o2) {
return o2.getValue()-o1.getValue();
}
});
for (int i = 0; i <5;i++) {
context.write(new Text(ety.get(i).getKey()),new IntWritable(ety.get(i).getValue()));
}
}
}
}
mr-----topn的用法
shjita2026-01-20 11:40
相关推荐
RyFit36 分钟前
SpringAI 常见问题及解决方案大全石山代码1 小时前
C++ 内存分区 堆区绝知此事1 小时前
【算法突围 01】线性结构与哈希表:后端开发的收纳术无风听海1 小时前
C# 隐式转换深度解析一只大袋鼠2 小时前
Git 进阶(二):分支管理、暂存栈、远程仓库与多人协作德思特3 小时前
从 Dify 配置页理解 RAG 的重要参数YOU OU3 小时前
Spring IoC&DIодин but you3 小时前
从可变参数到 emplace:现代 C++ 性能优化的核心组合是码龙不是码农4 小时前
ThreadPoolExecutor 7 个核心参数详解这是程序猿4 小时前
Spring Boot自动配置详解