Apache Spark之 reduceByKey() 函数

[b][size=medium]一、背景知识[/size][/b]

[b]RDD[/b] : Resilient Distributed DataSet

回弹性 分布式 数据集合


什么是 Resilient /rɪˈzɪliənt/ ? 英文解释是这样的:

able to recoil or spring back into shape after bending, stretching,
or being compressed.(
其形状能够在弯曲、拉伸、被压缩后 恢复回原来的模样)

那么 Resilient
应用到 RDD 中是什么意思?这需要引入 RDD 操作的另一个概念:Map。
Map 是什么? Java 中有 HashMap 集合类(使用Hash算法实现的Map)
HashMap 的对象是 (Key, Value) 格式的。即:一个键 映射 一个值。

这里的 Map 也是这个意思:映射。把一个 RDD 映射为 一个新的 RDD,
通过某种映射规则(函数)。 RDD 映射完成后,还可以恢复到映射前的样子。



[b][size=medium]二、reduceByKey() 函数 [/size][/b]

在 Apache Spark 的 Quick Start 页面 有这么一行代码,是关于 MapReduce 的概念及用法的。

//
//该行代码用来统计 ReadMe.md 文件中,每个单词出现的次数。
//

scala> val textFile = sc.textFile("README.md")

scala> val wordCounts = textFile
.flatMap(line => line.split(" "))
.map(word => (word, 1))
.reduceByKey((a, b) => a + b)


scala> wordCounts.collect()
//res6: Array[(String, Int)] = Array((means,1), (under,2), (this,3),
// (Because,1), (Python,2), (agree,1), (cluster.,1), ...)
//
//


其中有这么一个函数: reduceByKey((a, b) => a + b)

经过查看 API,现记录如下:

________________________________________________________________________________

- reduceByKey(func, [numTasks])
________________________________________________________________________________

When called on a dataset of (K, V) pairs,
returns a dataset of (K, V) pairs where the values for each key
are aggregated using the given reduce function func, which must
be of type (V,V) => V.

Like in groupByKey, the number of reduce tasks is configurable
through an optional second argument.

------------------------------------------------------------------------------
解释:

reduceByKey 函数应用于(Key,Value)格式的数据集。
reduceByKey 函数的作用是把 key 相同的合并。
reduceByKey 函数同样返回一个(Key,Value)格式的数据集。

reduceByKey 函数的参数 func 的格式:(V,V) => V.
即:两个 value 作为参数;必须返回一个 Value 格式的数据。

________________________________________________________________________________


故:reduceByKey((a, b) => a + b) 的完整写法应该是这样的(大概意思):

function reduceByKey( function(value_a, value_b){
return value_a + value_b;
});



[b][size=medium]最后:[/size][/b]


关于 Lambda 表达式,请参看我的这篇技术博文:

[url=http://lixh1986.iteye.com/blog/2329376]Java 8 之新特性介绍 及 Lambda 表达式[/url]


引用:

Apache Spark - Quick Start
http://spark.apache.org/docs/latest/quick-start.html


Apache Spark - Programming Guid: Transformations
http://spark.apache.org/docs/latest/programming-guide.html#transformations


-
转载请注明,
原文出处:http://lixh1986.iteye.com/blog/2345420


-
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值