Using Spark DataFrames for Word Count

Knoldus Inc.
Knoldus - Technical Insights
2 min readOct 21, 2015

As we all know that, DataFrame API was introduced in Spark 1.3.0, in March 2015. Its goal was to make distributed processing of “Big Data” more intuitive, by organizing distributed collection of data (known as RDD) into named columns. This enabled both, Engineers & Data Scientists, to use Apache Spark for distributed processing of “Big Data”, with ease.

Also, DataFrame API came with many under the hood optimizations like Spark SQL Catalyst optimizer and recently, in Spark 1.5.0 it got Tungsten enabled in it. This has made Spark DataFrames efficient and faster than ever.

In the following blog post, we will learn “How to use Spark DataFrames for a simple Word Count ?”

The first step is to create a Spark Context & SQL Context on which DataFrames depend.

[code language=”scala”]
val sc = new SparkContext(new SparkConf().setAppName(“word-count”).setMaster(“local”))
val sqlContext = new SQLContext(sc)
[/code]

Now, we can load up a file for which we have to find Word Count. But before that we need to import implicits from “sqlContext” which are necessary to convert a RDD to a DataFrame.

[code language=”scala”]
import sqlContext.implicits._
[/code]

After this, we can find the Word Count of the file using following code snippet.

[code language=”scala”]
val linesDF = sc.textFile(“file.txt”).toDF(“line”)
val wordsDF = linesDF.explode(“line”,”word”)((line: String) => line.split(“ “))
val wordCountDF = wordsDF.groupBy(“word”).count()
wordCountDF.show()
[/code]

In above code snippet, we need to notice that “count()” function is not same as “count()” of a RDD. Here, it counts the occurrence of each grouped word, not all words in whole dataframe.

From above code, we can infer that how intuitive is DataFrame API of Spark. Now, we don’t have to use “map”, “flatMap” & “reduceByKey” methods to get the Word Count. Or, need to have sound knowledge of Spark RDD before start coding in Spark.

Hope, you enjoyed reading this blog post. You can download the code for this example from here.

--

--

Knoldus Inc.
Knoldus - Technical Insights

Group of smart Engineers with a Product mindset who partner with your business to drive competitive advantage | www.knoldus.com