在研究关于mapreduce实现topn时候,发现了这篇博文,感觉挺不错的,与大家一块分享。原博客:http://my.oschina.net/u/1378204/blog/343666
在最初接触mapreduce时,top n 问题的解决办法是将mapreduce输出(排序后)放入一个集合中,取前n个,但这种写法过于简单,内存能够加载的集合的大小是有上限的,一旦数据量大,很容易出现内存溢出。
今天在这里介绍另一种实现方式,当然这也不是最好的方式,不过正所谓一步一个脚印,迈好每一步,以后的步伐才能更坚定,哈哈说了点题外话。恩恩,以后还会有更好的方式
需求,得到top 最大的前n条记录
这里只给出一些核心的代码,其他job等配置的代码略
?
1
2
|
Configuration conf =
new
Configuration();
conf.setInt(
"N"
,
5
);
|
初始化job之前需要 conf.setInt("N",5); 意在在mapreduce阶段读取N,N就代表着top N
以下是map
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
package
com.lzz.one;
import
java.io.IOException;
import
java.util.Arrays;
import
org.apache.hadoop.io.IntWritable;
import
org.apache.hadoop.io.LongWritable;
import
org.apache.hadoop.io.Text;
import
org.apache.hadoop.mapreduce.Mapper;
/**
* topN
* #orderid,userid,payment,productid
* [root@x00 hd]# cat seventeen_a.txt
* 1,9819,100,121
* 2,8918,2000,111
* 3,2813,1234,22
* 4,9100,10,1101
* 5,3210,490,111
* 6,1298,28,1211
* 7,1010,281,90
* 8,1818,9000,20
* [root@x00 hd]# cat seventeen_b.txt
* 100,3333,10,100
* 101,9321,1000,293
* 102,3881,701,20
* 103,6791,910,30
* 104,8888,11,39
* 预测结果:(求 Top N=5 的结果)
* 1 9000
* 2 2000
* 3 1234
* 4 1000
* 5 910
* @author Administrator
*
*/
public
class
TopNMapper
extends
Mapper<LongWritable, Text, IntWritable, IntWritable>{
int
len;
int
top[];
@Override
public
void
setup(Context context)
throws
IOException,InterruptedException {
len = context.getConfiguration().getInt(
"N"
,
10
);
top =
new
int
[len+
1
];
}
@Override
public
void
map(LongWritable key, Text value, Context context)
throws
IOException, InterruptedException {
String line = value.toString();
String arr []= line.split(
","
);
if
(arr !=
null
&& arr.length ==
4
){
int
pay = Integer.parseInt(arr[
2
]);
add(pay);
}
}
public
void
add(
int
pay){
top[
0
] = pay;
Arrays.sort(top);
}
@Override
public
void
cleanup(Context context)
throws
IOException,InterruptedException {
for
(
int
i=
1
;i<=len;i++){
<span></span>context.write(
new
IntWritable(top[i]),
new
IntWritable(top[i]));
<span></span>}
}
}
<div>
</div>
|
接下来是reduce
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
package
com.lzz.one;
import
java.io.IOException;
import
java.util.Arrays;
import
org.apache.hadoop.io.IntWritable;
import
org.apache.hadoop.mapreduce.Reducer;
public
class
TopNReduce
extends
Reducer<IntWritable, IntWritable, IntWritable, IntWritable>{
int
len;
int
top[];
@Override
public
void
setup(Context context)
throws
IOException, InterruptedException {
len = context.getConfiguration().getInt(
"N"
,
10
);
top =
new
int
[len+
1
];
}
@Override
public
void
reduce(IntWritable key, Iterable<IntWritable> values,
Context context)
throws
IOException, InterruptedException {
for
(IntWritable val : values){
add(val.get());
}
}
public
void
add(
int
pay){
top[
0
] = pay;
Arrays.sort(top);
}
@Override
public
void
cleanup(Context context)
throws
IOException, InterruptedException {
for
(
int
i=len;i>
0
;i--){
context.write(
new
IntWritable(len-i+
1
),
new
IntWritable(top[i]));
}
}
}
|
说一下逻辑,虽然画图比较清晰,但是时间有限,画图水平有限,只用语言来描述吧,希望能说的明白
如果要取top 5,则应该定义一个长度为为6的数组,map所要做的事情就是将每条日志的那个需要排序的字段放入数组第一个元素中,调用Arrays.sort(Array[])方法可以将数组按照正序,从数字角度说是从小到大排序,比如第一条记录是9000,那么排序结果是[0,0,0,0,0,9000],第二条日志记录是8000,排序结果是[0,0,0,0,8000,9000],第三条日志记录是8500,排序结果是[0,0,0,8000,8500,9000],以此类推,每次放进去一个数字如果大于数组里面最小的元素,相当于将最小的覆盖掉了,也就是说数组中元素永远是拿到日志中最大的那些个记录
ok,map将数组原封不动按照顺序输出,reduce接收到从每个map拿到的五个排好序的元素,在进行跟map一样的排序,排序后数组里面就是按照从小到大排好序的元素,将这些元素倒序输出就是最终我们要的结果了
与之前的方式做个比较,之前的map做的事情很少,在reduce中排序后哪前5条,reduce的压力是很大的,要把所有的数据都处理一遍,而一般设置reduce的个数较少,一旦数据较多,reduce就会承受不了,悲剧了。而现在的方式巧妙的将reduce的压力转移到了map,而map是集群效应的,很多台服务器来做这件事情,减少了一台机器上的负担,每个map其实只是输出了5个元素而已,如果有5个map,其实reduce才对5*5个数据进行了操作,也就不会出现内存溢出等问题了