中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spark-shell實現WordCount&按word排序&按count排序

發布時間:2021-11-24 16:03:13 來源:億速云 閱讀:272 作者:柒染 欄目:云計算

spark-shell實現WordCount&按word排序&按count排序,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

輸入:

hello tom
hello jerry
hello kitty
hello world
hello tom

讀取 HDFS 中位于 hdfs://node1:9000/wc/input 目錄下的文本文件, 讀取結果賦值給 textRdd

val textRdd = sc.textFile("hdfs://node1:9000/wc/input")
textRdd.collect

res1: Array[String] = Array(hello,tom, hello,jerry, hello,kitty, hello,world, hello,tom)

實現普通的 WordCount, 但結果不會像 MapReduce 那樣按 Key(word) 排序

val wcRdd = textRdd.flatMap(_.split(" ")).map((_, 1)).reduceByKey(_ + _)
wcRdd.collect

res2: Array[(String, Int)] = Array((tom,2), (hello,5), (jerry,1), (kitty,1), (world,1))

實現按 Key(word) 排序(字典順序)的 WordCount

思路: 在 wcRdd 的基礎上對 Key(word) 排序

val sortByWordRdd = wcRdd.sortByKey(true)    // 在 wcRdd 的基礎上對 Key(word) 排序
sortByWordRdd.collect

res3: Array[(String, Int)] = Array((hello,5), (jerry,1), (kitty,1), (tom,2), (world,1))

在 Spark 1.3 中, 可以使用這樣一個 RDD 的 transform 操作:

使用 sortBy() 操作

// _._1 : 元組的第1項, 就是 word; true : 按升序排序
val sortByWordRdd = wcRdd.sortBy(_._1, true)
sortByWordRdd.collect

res3: Array[(String, Int)] = Array((hello,5), (jerry,1), (kitty,1), (tom,2), (world,1))

實現按 Value(count) 排序(降序)的 WordCount

思路1: 在 wcRdd 的基礎上, 先把K(word), V(count)反轉, 此時對Key(count)進行排序, 最后再反轉回去

// 在wcRdd的基礎上, 先把K(word), V(count)反轉, 此時對Key(count)進行排序, 最后再反轉回去
val sortByCountRdd = wcRdd.map(x => (x._2,x._1)).sortByKey(false).map(x => (x._2,x._1))
sortByCountRdd.collect

res4: Array[(String, Int)] = Array((hello,5), (tom,2), (jerry,1), (kitty,1), (world,1))

思路2: 直接使用 sortBy() 操作

// _._2 : 元組的第2項, 就是 count; false : 按降序排序
val sortByCountRdd = wcRdd.sortBy(_._2, false)
sortByCountRdd.collect

res4: Array[(String, Int)] = Array((hello,5), (tom,2), (jerry,1), (kitty,1), (world,1))

關于spark-shell實現WordCount&按word排序&按count排序問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

开远市| 建平县| 易门县| 龙口市| 巴楚县| 五家渠市| 偃师市| 云林县| 中牟县| 天全县| 洛川县| 京山县| 法库县| 蓝田县| 余姚市| 山丹县| 漳州市| 松潘县| 杭锦后旗| 信宜市| 平山县| 丹阳市| 罗山县| 安塞县| 刚察县| 彰武县| 武川县| 芜湖市| 青冈县| 新邵县| 井冈山市| 桂阳县| 诸城市| 徐闻县| 鹤壁市| 孝昌县| 漳平市| 景宁| 小金县| 六安市| 台北县|