cow*_*irl 2 java hadoop mapreduce hadoop2
我是 hadoop mapreduce 编程范例的新手,有人可以告诉我如何轻松地根据值进行排序吗?我尝试实现另一个比较器类,但是有没有更简单的方法,例如通过作业配置来根据减速器的值进行排序。基本上我正在阅读日志文件,并且我想按升序对 hitcount 进行排序。
public static class TokenizerMapper extends Mapper<Object, Text, Text, IntWritable> {
private final static IntWritable ONE = new IntWritable(1);
private Text word = new Text();
public void map(Object key, Text value, Context context
) throws IOException, InterruptedException {
String[] split = value.toString().split(" ");
for(int i=0; i<split.length; i++){
if (i==6)
word.set(split[i]);
context.write(word, ONE);
}
}
}
public static class IntSumReducer extends Reducer<Text,IntWritable,Text,IntWritable> {
private IntWritable result = new IntWritable();
public void reduce(Text key, Iterable<IntWritable> values, Context context) throws IOException, InterruptedException {
int sum = 0;
for (IntWritable val : values) {
sum += val.get();
}
result.set(sum);
context.write(key, result);
}
}
Run Code Online (Sandbox Code Playgroud)
小智 5
在您的减速器类中声明一个映射,并将键和值放入映射中。现在在你的reducer类的cleanup()方法中尝试按值对映射进行排序,然后最后在context.write(key,value);中给出值。
public static class IntSumReducer extends Reducer<Text,IntWritable,Text,IntWritable> {
private IntWritable result = new IntWritable();
TreeMap<Text,IntWritable>result=new TreeMap<Text, IntWritable>();
public void reduce(Text key, Iterable<IntWritable> values, Context context) throws IOException, InterruptedException {
int sum = 0;
for (IntWritable val : values) {
sum += val.get();
}
result.put(new Text(key),new IntWritable(sum));
}
}
@Override
protected void cleanup(Context context)
throws IOException, InterruptedException {
Set<Entry<Text, IntWritable>> set = result.entrySet();
List<Entry<Text, IntWritable>> list = new ArrayList<Entry<Text,IntWritable>>(set);
Collections.sort( list, new Comparator<Map.Entry<Text, IntWritable>>()
{
public int compare( Map.Entry<Text, IntWritable> o1, Map.Entry<Text,IntWritable> o2 )
{
return (o2.getValue()).compareTo( o1.getValue() );
}
});
for(Map.Entry<Text,IntWritable> entry:list){
context.write(entry.getKey(),entry.getValue());
}
}
}
Run Code Online (Sandbox Code Playgroud)