Skip to content

Instantly share code, notes, and snippets.

@bryanyang0528
Created November 18, 2014 14:22
Show Gist options
  • Save bryanyang0528/48463a7a280c0f6b8064 to your computer and use it in GitHub Desktop.
Save bryanyang0528/48463a7a280c0f6b8064 to your computer and use it in GitHub Desktop.
readfile
val text = sc.textFile("README.md")
val textPairsRDD = text.flatMap(_.split(" ")).map((_,1))
textPairsRDD.take(10)
//res2: Array[(String, Int)] = Array((#,1), (Apache,1), (Spark,1), ("",1),
//(Spark,1), (is,1), (a,1), (fast,1), (and,1), (general,1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment