Created
June 15, 2016 02:46
-
-
Save vgiri2015/64de4177df230d0c7b0e46e172ee6a2a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package rnd | |
import org.apache.spark.sql.SQLContext | |
import org.apache.spark.streaming.{Seconds, StreamingContext} | |
import org.apache.spark.{SparkConf, SparkContext} | |
/** | |
* Created by vgiridatabricks on 5/26/16. | |
*/ | |
object NetcatSparkStreamingToESIndex { | |
def main(args: Array[String]) : Unit = { | |
// Create a local StreamingContext with two working thread and batch interval of 1 second. | |
// The master requires 2 cores to prevent from a starvation scenario. | |
val conf = new SparkConf().setMaster("local[2]").setAppName("NetworkWordCount").set("spark.driver.allowMultipleContexts", "true") | |
val sc = new SparkContext(conf) | |
val ssc = new StreamingContext(conf, Seconds(1)) | |
val lines = ssc.socketTextStream("localhost", 9999) | |
val words = lines.flatMap(_.toLowerCase.split(" ")) | |
words.foreachRDD { rdd => | |
val sqlContext = SQLContext.getOrCreate(rdd.sparkContext) | |
import sqlContext.implicits._ | |
val wordsDataFrame = rdd.toDF("words") | |
wordsDataFrame.registerTempTable("allwords") | |
val wcdf = sqlContext.sql("select words,count(*) as total from allwords group by words") | |
wcdf.show() | |
import org.elasticsearch.spark.sql._ | |
wcdf.saveToEs("wordcount/wc") | |
} | |
ssc.start() // Start the computation | |
ssc.awaitTermination() // Wait for the computation to terminate | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment