Apache Spark: Differences between client and cluster deploy modes

What are the practical differences between Spark Standalone client
deploy mode and cluster deploy mode? What are the pro’s and con’s of
using each one?

Let’s try to look at the differences between client and cluster mode.

Client:

  • Driver runs on a dedicated server (Master node) inside a dedicated process. This means it has all available resources at it’s disposal to execute work.
  • Driver opens up a dedicated Netty HTTP server and distributes the JAR files specified to all Worker nodes (big advantage).
  • Because the Master node has dedicated resources of it’s own, you don’t need to “spend” worker resources for the Driver program.
  • If the driver process dies, you need an external monitoring system to reset it’s execution.

Cluster:

  • Driver runs on one of the cluster’s Worker nodes. The worker is chosen by the Master leader
  • Driver runs as a dedicated, standalone process inside the Worker.
  • Driver programs takes up at least 1 core and a dedicated amount of memory from one of the workers (this can be configured).
  • Driver program can be monitored from the Master node using the --supervise flag and be reset in case it dies.
  • When working in Cluster mode, all JARs related to the execution of your application need to be publicly available to all the workers. This means you can either manually place them in a shared place or in a folder for each of the workers.

Which one is better? Not sure, that’s actually for you to experiment and decide. This is no better decision here, you gain things from the former and latter, it’s up to you to see which one works better for your use-case.

How to I choose which one my application is going to be running on,
using spark-submit

The way to choose which mode to run in is by using the --deploy-mode flag. From the Spark Configuration page:

/bin/spark-submit \
  --class <main-class>
  --master <master-url> \
  --deploy-mode <deploy-mode> \
  --conf <key>=<value> \
  ... # other options
  <application-jar> \
  [application-arguments]

Leave a Comment