Created
September 2, 2017 15:19
-
-
Save mannharleen/c1c4d782fc247dbc2f53ab92c9928116 to your computer and use it in GitHub Desktop.
Add numbers in a DStream
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
/* | |
Add the numbers coming into each DStream of data | |
*/ | |
import org.apache.spark.streaming.StreamingContext | |
import org.apache.spark.streaming.Seconds | |
import org.apache.spark.{SparkConf, SparkContext} | |
val conf = new SparkConf().setAppName("sbtapp").setMaster("local[3]") | |
val ssc = new StreamingContext(conf,Seconds(5)) | |
val lines = ssc.socketTextStream("localhost",9999) | |
//org.apache.spark.streaming.dstream.ReceiverInputDStream[String] | |
//so 'lines' is a DStream of [Strings] | |
val result = lines.map(x=> x.toInt).reduce((a,n) => a+n) | |
result.print | |
ssc.start | |
/* | |
.....On the command line use: | |
nc -L -p 9999 -v | |
--then type numbers followed by 'enter-key' | |
*/ | |
ssc.stop(true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment