Spark Streaming

20 / 20

Apache Spark - Streaming - Slides

Apache Spark Streaming - Slides


No hints are availble for this assesment

Answer is not availble for this assesment

Please login to comment

5 Comments

Please also provide the pdf link of each and every module of the slide so that we can download the pdf slide for revision of a particular topic.

  Upvote    Share

Spark streaming lessons seems to be on tougher side than Python.

  Upvote    Share

Hello Team,
spark-submit --class "WordCount" --master "local[2]"
target/scala-2.10/word-count_2.10-1.0.jar

in above command. "Local[2]" what does it mean?
Please explain.

  Upvote    Share

As per my understanding, it will run on system with 2 cores.

  Upvote    Share

Yes, you are right.

We are here submitting the spark job with Local means the spark is running locally in your machine with 2 worker cores or cpu.
if you provide local[*] then it will take all the cores available for processing.

All the best!

-- Satyajit Das

  Upvote    Share