码迷,mamicode.com
首页 > 其他好文 > 详细

spark wordcount

时间:2018-07-23 19:56:12      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:contex   atm   .text   line   reduce   local   app   text   split   

object WordCount {

def main(args: Array[String]): Unit = {

val conf = new SparkConf().setAppName("WordCount").setMaster("local[*]")
val sc = new SparkContext(conf)
val lines: RDD[String] = sc.textFile("/Users/yaoyao/hobby/AntiReptile/ip/wordcount.txt")
val words: RDD[String] = lines.flatMap(_.split(" "))
val wordOne: RDD[(String, Int)] = words.map((_,1))
val reduces: RDD[(String, Int)] = wordOne.reduceByKey(_+_)
println(reduces.collect().toBuffer)
sc.stop()
  }
}

spark wordcount

标签:contex   atm   .text   line   reduce   local   app   text   split   

原文地址:https://www.cnblogs.com/yaoyao66123/p/9356375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!