Spark Streaming is an extension of the core Apache Spark API that enables high-throughput, fault-tolerant stream processing of live data streams.
I'm developing a Spark Application and I'm used to Spring as a Dependency Injection Framework. Now I'm stuck with the …
java spring apache-spark spark-streamingI am running a Spark streaming application with 2 workers. Application has a join and an union operations. All the batches …
apache-spark spark-streaming apache-spark-1.4I have a Spark 2.0 dataframe example with the following structure: id, hour, count id1, 0, 12 id1, 1, 55 .. id1, 23, 44 id2, 0, 12 id2, 1, 89 .. id2, 23, 34 etc. …
scala apache-spark apache-spark-sql spark-streaming spark-dataframeI'm trying to read the messages from kafka (version 10) in spark and trying to print it. import spark.implicits._ val …
scala apache-spark-sql spark-streamingI was trying to execute sample basic sparkstreaming example in Scala IDE, but I am getting below error: Error: Could …
spark-streaming scala-ideWhen I'm trying to run my code it throws this Exception: Exception in thread "main" org.apache.spark.SparkException: Could …
java twitter spark-streamingI use fileStream to read files in the hdfs directory from Spark (streaming context). In case my Spark shut down …
scala hadoop apache-spark spark-streamingI keep getting the the following exception very frequently and I wonder why this is happening? After researching I found …
apache-spark spark-streamingI want to run a spark streaming application on a yarn cluster on a remote server. The default java version …
java yarn spark-streamingI'm trying to execute a Spark Streaming example with Twitter as the source as follows: public static void main (String.. …
java apache-spark spark-streaming