Abhinav Kumar
Abhinav Kumar

Reputation: 240

Difference between spark standalone and local mode?

What is the difference between Spark standalone and Local mode?

Upvotes: 4

Views: 2532

Answers (1)

Assaf Mendelson
Assaf Mendelson

Reputation: 13001

Spark standalone is a resource manager which can work on a cluster. It is simply the built in resource manager as opposed to an external one like yarn.

Spark local runs without any resource manager, everything runs in a single jvm (you can decide the number of threads). This is aimed for testing locally.

Upvotes: 9

Related Questions