RDD算子

  1. #常用Transformation(即转换,延迟加载)
  2. #通过并行化scala集合创建RDD
  3. val rdd1 = sc.parallelize(Array(1,2,3,4,5,6,7,8))
  4. #查看该rdd的分区数量
  5. rdd1.partitions.length
  6.  
  7. val rdd1 = sc.parallelize(List(5,6,4,7,3,8,2,9,1,10))
  8. val rdd2 = sc.parallelize(List(5,6,4,7,3,8,2,9,1,10)).map(_*2).sortBy(x=>x,true)
  9. val rdd3 = rdd2.filter(_>10)
  10. val rdd2 = sc.parallelize(List(5,6,4,7,3,8,2,9,1,10)).map(_*2).sortBy(x=>x+"",true)
  11. val rdd2 = sc.parallelize(List(5,6,4,7,3,8,2,9,1,10)).map(_*2).sortBy(x=>x.toString,true)
  12.  
  13. val rdd4 = sc.parallelize(Array("a b c", "d e f", "h i j"))
  14. rdd4.flatMap(_.split(' ')).collect
  15.  
  16. val rdd5 = sc.parallelize(List(List("a b c", "a b b"),List("e f g", "a f g"), List("h i j", "a a b")))
  17.  
  18. List("a b c", "a b b") =List("a","b",))
  19.  
  20. rdd5.flatMap(_.flatMap(_.split(" "))).collect
  21.  
  22. #union求并集,注意类型要一致
  23. val rdd6 = sc.parallelize(List(5,6,4,7))
  24. val rdd7 = sc.parallelize(List(1,2,3,4))
  25. val rdd8 = rdd6.union(rdd7)
  26. rdd8.distinct.sortBy(x=>x).collect
  27.  
  28. #intersection求交集
  29. val rdd9 = rdd6.intersection(rdd7)
  30.  
  31. val rdd1 = sc.parallelize(List(("tom", 1), ("jerry", 2), ("kitty", 3)))
  32. val rdd2 = sc.parallelize(List(("jerry", 9), ("tom", 8), ("shuke", 7), ("tom", 2)))
  33.  
  34. #join(连接)
  35. val rdd3 = rdd1.join(rdd2)
  36. val rdd3 = rdd1.leftOuterJoin(rdd2)
  37. val rdd3 = rdd1.rightOuterJoin(rdd2)
  38.  
  39. #groupByKey
  40. val rdd3 = rdd1 union rdd2
  41. rdd3.groupByKey
  42. //(tom,CompactBuffer(1, 8, 2))
  43. rdd3.groupByKey.map(x=>(x._1,x._2.sum))
  44. groupByKey.mapValues(_.sum).collect
  45. Array((tom,CompactBuffer(1, 8, 2)), (jerry,CompactBuffer(9, 2)), (shuke,CompactBuffer(7)), (kitty,CompactBuffer(3)))
  46.  
  47. #WordCount
  48. sc.textFile("/root/words.txt").flatMap(x=>x.split(" ")).map((_,1)).reduceByKey(_+_).sortBy(_._2,false).collect
  49. sc.textFile("/root/words.txt").flatMap(x=>x.split(" ")).map((_,1)).groupByKey.map(t=>(t._1, t._2.sum)).collect
  50.  
  51. #cogroup
  52. val rdd1 = sc.parallelize(List(("tom", 1), ("tom", 2), ("jerry", 3), ("kitty", 2)))
  53. val rdd2 = sc.parallelize(List(("jerry", 2), ("tom", 1), ("shuke", 2)))
  54. val rdd3 = rdd1.cogroup(rdd2)
  55. val rdd4 = rdd3.map(t=>(t._1, t._2._1.sum + t._2._2.sum))
  56.  
  57. #cartesian笛卡尔积
  58. val rdd1 = sc.parallelize(List("tom", "jerry"))
  59. val rdd2 = sc.parallelize(List("tom", "kitty", "shuke"))
  60. val rdd3 = rdd1.cartesian(rdd2)
  61.  
  62. ###################################################################################################
  63.  
  64. #spark action
  65. val rdd1 = sc.parallelize(List(1,2,3,4,5), 2)
  66.  
  67. #collect
  68. rdd1.collect
  69.  
  70. #reduce
  71. val r = rdd1.reduce(_+_)
  72.  
  73. #count
  74. rdd1.count
  75.  
  76. #top
  77. rdd1.top(2)
  78.  
  79. #take
  80. rdd1.take(2)
  81.  
  82. #first(similer to take(1))
  83. rdd1.first
  84.  
  85. #takeOrdered
  86. rdd1.takeOrdered(3)

spark RDD api

  1. http://homepage.cs.latrobe.edu.au/zhe/ZhenHeSparkRDDAPIExamples.html
  2.  
  3. mapPartitionsWithIndex
  4. val func = (index: Int, iter: Iterator[(String)]) => {
  5. iter.map(x => "[partID:" + index + ", val: " + x + "]")
  6. }
  7.  
  8. mapPartitionsWithIndex
  9. val func = (index: Int, iter: Iterator[Int]) => {
  10. iter.map(x => "[partID:" + index + ", val: " + x + "]")
  11. }
  12. val rdd1 = sc.parallelize(List(1,2,3,4,5,6,7,8,9), 2)
  13. rdd1.mapPartitionsWithIndex(func).collect
  14.  
  15. -------------------------------------------------------------------------------------------
  16. -------------------------------------------------------------------------------------------
  17. aggregate
  18.  
  19. def func1(index: Int, iter: Iterator[(Int)]) : Iterator[String] = {
  20. iter.toList.map(x => "[partID:" + index + ", val: " + x + "]").iterator
  21. }
  22. val rdd1 = sc.parallelize(List(1,2,3,4,5,6,7,8,9), 2)
  23. rdd1.mapPartitionsWithIndex(func1).collect
  24. rdd1.aggregate(0)(math.max(_, _), _ + _)
  25. rdd1.aggregate(5)(math.max(_, _), _ + _)
  26.  
  27. val rdd2 = sc.parallelize(List("a","b","c","d","e","f"),2)
  28. def func2(index: Int, iter: Iterator[(String)]) : Iterator[String] = {
  29. iter.toList.map(x => "[partID:" + index + ", val: " + x + "]").iterator
  30. }
  31. rdd2.aggregate("")(_ + _, _ + _)
  32. rdd2.aggregate("=")(_ + _, _ + _)
  33.  
  34. val rdd3 = sc.parallelize(List("12","23","345","4567"),2)
  35. rdd3.aggregate("")((x,y) => math.max(x.length, y.length).toString, (x,y) => x + y)
  36.  
  37. val rdd4 = sc.parallelize(List("12","23","345",""),2)
  38. rdd4.aggregate("")((x,y) => math.min(x.length, y.length).toString, (x,y) => x + y)
  39.  
  40. val rdd5 = sc.parallelize(List("12","23","","345"),2)
  41. rdd5.aggregate("")((x,y) => math.min(x.length, y.length).toString, (x,y) => x + y)
  42.  
  43. -------------------------------------------------------------------------------------------
  44. -------------------------------------------------------------------------------------------
  45. aggregateByKey
  46.  
  47. val pairRDD = sc.parallelize(List( ("cat",2), ("cat", 5), ("mouse", 4),("cat", 12), ("dog", 12), ("mouse", 2)), 2)
  48. def func2(index: Int, iter: Iterator[(String, Int)]) : Iterator[String] = {
  49. iter.map(x => "[partID:" + index + ", val: " + x + "]")
  50. }
  51. pairRDD.mapPartitionsWithIndex(func2).collect
  52. pairRDD.aggregateByKey(0)(math.max(_, _), _ + _).collect
  53. pairRDD.aggregateByKey(100)(math.max(_, _), _ + _).collect
  54.  
  55. -------------------------------------------------------------------------------------------
  56. -------------------------------------------------------------------------------------------
  57. checkpoint
  58. sc.setCheckpointDir("hdfs://node-1.edu360.cn:9000/ck")
  59. val rdd = sc.textFile("hdfs://node-1.edu360.cn:9000/wc").flatMap(_.split(" ")).map((_, 1)).reduceByKey(_+_)
  60. rdd.checkpoint
  61. rdd.isCheckpointed
  62. rdd.count
  63. rdd.isCheckpointed
  64. rdd.getCheckpointFile
  65.  
  66. -------------------------------------------------------------------------------------------
  67. -------------------------------------------------------------------------------------------
  68. coalesce, repartition
  69. val rdd1 = sc.parallelize(1 to 10, 10)
  70. val rdd2 = rdd1.coalesce(2, false)
  71. rdd2.partitions.length
  72.  
  73. -------------------------------------------------------------------------------------------
  74. -------------------------------------------------------------------------------------------
  75. collectAsMap
  76. val rdd = sc.parallelize(List(("a", 1), ("b", 2)))
  77. rdd.collectAsMap
  78.  
  79. -------------------------------------------------------------------------------------------
  80. -------------------------------------------------------------------------------------------
  81. combineByKey
  82. val rdd1 = sc.textFile("hdfs://node-1.edu360.cn:9000/wc").flatMap(_.split(" ")).map((_, 1))
  83. val rdd2 = rdd1.combineByKey(x => x, (a: Int, b: Int) => a + b, (m: Int, n: Int) => m + n)
  84. rdd2.collect
  85.  
  86. val rdd3 = rdd1.combineByKey(x => x + 10, (a: Int, b: Int) => a + b, (m: Int, n: Int) => m + n)
  87. rdd3.collect
  88.  
  89. val rdd4 = sc.parallelize(List("dog","cat","gnu","salmon","rabbit","turkey","wolf","bear","bee"), 3)
  90. val rdd5 = sc.parallelize(List(1,1,2,2,2,1,2,2,2), 3)
  91. val rdd6 = rdd5.zip(rdd4)
  92. val rdd7 = rdd6.combineByKey(List(_), (x: List[String], y: String) => x :+ y, (m: List[String], n: List[String]) => m ++ n)
  93.  
  94. -------------------------------------------------------------------------------------------
  95. -------------------------------------------------------------------------------------------
  96. countByKey
  97.  
  98. val rdd1 = sc.parallelize(List(("a", 1), ("b", 2), ("b", 2), ("c", 2), ("c", 1)))
  99. rdd1.countByKey
  100. rdd1.countByValue
  101.  
  102. -------------------------------------------------------------------------------------------
  103. -------------------------------------------------------------------------------------------
  104. filterByRange
  105.  
  106. val rdd1 = sc.parallelize(List(("e", 5), ("c", 3), ("d", 4), ("c", 2), ("a", 1)))
  107. val rdd2 = rdd1.filterByRange("b", "d")
  108. rdd2.colllect
  109.  
  110. -------------------------------------------------------------------------------------------
  111. -------------------------------------------------------------------------------------------
  112. flatMapValues
  113. val a = sc.parallelize(List(("a", "1 2"), ("b", "3 4")))
  114. rdd3.flatMapValues(_.split(" "))
  115.  
  116. -------------------------------------------------------------------------------------------
  117. -------------------------------------------------------------------------------------------
  118. foldByKey
  119.  
  120. val rdd1 = sc.parallelize(List("dog", "wolf", "cat", "bear"), 2)
  121. val rdd2 = rdd1.map(x => (x.length, x))
  122. val rdd3 = rdd2.foldByKey("")(_+_)
  123.  
  124. val rdd = sc.textFile("hdfs://node-1.edu360.cn:9000/wc").flatMap(_.split(" ")).map((_, 1))
  125. rdd.foldByKey(0)(_+_)
  126.  
  127. -------------------------------------------------------------------------------------------
  128. -------------------------------------------------------------------------------------------
  129. foreachPartition
  130. val rdd1 = sc.parallelize(List(1, 2, 3, 4, 5, 6, 7, 8, 9), 3)
  131. rdd1.foreachPartition(x => println(x.reduce(_ + _)))
  132.  
  133. -------------------------------------------------------------------------------------------
  134. -------------------------------------------------------------------------------------------
  135. keyBy
  136. val rdd1 = sc.parallelize(List("dog", "salmon", "salmon", "rat", "elephant"), 3)
  137. val rdd2 = rdd1.keyBy(_.length)
  138. rdd2.collect
  139.  
  140. -------------------------------------------------------------------------------------------
  141. -------------------------------------------------------------------------------------------
  142. keys values
  143. val rdd1 = sc.parallelize(List("dog", "tiger", "lion", "cat", "panther", "eagle"), 2)
  144. val rdd2 = rdd1.map(x => (x.length, x))
  145. rdd2.keys.collect
  146. rdd2.values.collect
  147.  
  148. -------------------------------------------------------------------------------------------
  149. -------------------------------------------------------------------------------------------
  150. mapPartitions( it: Iterator => {it.map(x => x * 10)})

  

RDD算子的更多相关文章

  1. RDD 算子补充

    一.RDD算子补充 1.mapPartitions         mapPartitions的输入函数作用于每个分区, 也就是把每个分区中的内容作为整体来处理.   (map是把每一行) mapPa ...

  2. RDD算子、RDD依赖关系

    RDD:弹性分布式数据集, 是分布式内存的一个抽象概念 RDD:1.一个分区的集合, 2.是计算每个分区的函数 ,    3.RDD之间有依赖关系 4.一个对于key-value的RDD的Partit ...

  3. spark教程(四)-SparkContext 和 RDD 算子

    SparkContext SparkContext 是在 spark 库中定义的一个类,作为 spark 库的入口点: 它表示连接到 spark,在进行 spark 操作之前必须先创建一个 Spark ...

  4. Spark性能调优-RDD算子调优篇(深度好文,面试常问,建议收藏)

    RDD算子调优 不废话,直接进入正题! 1. RDD复用 在对RDD进行算子时,要避免相同的算子和计算逻辑之下对RDD进行重复的计算,如下图所示: 对上图中的RDD计算架构进行修改,得到如下图所示的优 ...

  5. Spark中普通集合与RDD算子的sortBy()有什么区别

    分别观察一下集合与算子的sortBy()的参数列表 普通集合的sortBy() RDD算子的sortBy() 结论:普通集合的sortBy就没有false参数,也就是说只能默认的升序排. 如果需要对普 ...

  6. Spark RDD算子介绍

    Spark学习笔记总结 01. Spark基础 1. 介绍 Spark可以用于批处理.交互式查询(Spark SQL).实时流处理(Spark Streaming).机器学习(Spark MLlib) ...

  7. 大数据入门第二十二天——spark(二)RDD算子(2)与spark其它特性

    一.JdbcRDD与关系型数据库交互 虽然略显鸡肋,但这里还是记录一下(点开JdbcRDD可以看到限制比较死,基本是鸡肋.但好在我们可以通过自定义的JdbcRDD来帮助我们完成与关系型数据库的交互.这 ...

  8. 大数据入门第二十二天——spark(二)RDD算子(1)

    一.RDD概述 1.什么是RDD RDD(Resilient Distributed Dataset)叫做分布式数据集,是Spark中最基本的数据抽象,它代表一个不可变.可分区.里面的元素可并行计算的 ...

  9. RDD算子的使用

    TransformationDemo.scala import org.apache.spark.{HashPartitioner, SparkConf, SparkContext} import s ...

随机推荐

  1. Centos6.5 安装 python3.5 虚拟环境 virtualenvwrapper

    Centos6.5 安装 python3.5 虚拟环境 virtualenvwrapper 1 . 安装 python3.5 下载:https://www.python.org/ https://ww ...

  2. 2018-2019-20175315 实验一 《Java开发环境的熟悉》实验报告

    2018-2019-20175315实验一 <Java开发环境的熟悉>实验报告 一.实验内容及步骤 实验1 1.用mkdir建立“20175303exp1”的目录 2.在“20175303 ...

  3. SpringSecurity在Springboot下使用的初步体验

    SpringSecurity曾经在十年前非常火热,只要是做权限系统,当时几乎非用它不可,记得是在XML文件里一堆的配置.曾几何时,Shiro冒了出来,以其简洁和轻量的风格慢慢地捕获了众多码农的心,从此 ...

  4. python把列表前几个元素提取到新列表

    需要添加几个就循环几次   list = ['a','b','c','d','e'] new_list = [] for i in range(3): print(list[i]) new_list. ...

  5. matlab 写文件

    fid = fopen('data.txt','w');for oo=1:1:i if mod(oo,10) == 0 fprintf(fid,'%f,%f,\n',sI1(oo),sQ1(oo)); ...

  6. git在项目中的实际运用

    项目中只运用git版本管理的情况下: 1.创建分支命令: git branch (branchname) 切换分支命令: git checkout (branchname) 当你切换分支的时候,Git ...

  7. ***远程连接MYSQL提示1130 - Host is not allowed to connect to this MySQL server

    如果你想连接你的mysql的时候发生这个错误: ERROR 1130: Host '192.168.1.3' is not allowed to connect to this MySQL serve ...

  8. oh-my-zsh: 让终端飞

    上一次推文写了JupyterLab:程序员的笔记本神器,介绍的是如何在web端打造一个便捷的开发环境,发出后反响还不错 因此我决定再写几篇能提升程序员工作以及学习效率的文章,如果能形成一个系列那是最好 ...

  9. Angular Material design设计

    官网: https://material.io/design/ https://meterial.io/components 优秀的Meterial design站点: http://material ...

  10. 【webpack系列】从零搭建 webpack4+react 脚手架(一)

    搭建一个React工程的方式有很多,官方也有自己的脚手架,如果你和我一样,喜欢刨根究底,从零开始自己一行一行代码创建一个React脚手架项目,那你就来对地方了.本教程是针对React新手,以及对web ...