DATABRICKS-CERTIFIED-ASSOCIATE-DEVELOPER-FOR-APACHE-SPARK · Question #102
Spark's execution/deployment mode determines where the driver and executors are physically located when a Spark application is run. Which of the following Spark execution/deployment modes does not…
The correct answer is C. Standard mode. Apache Spark supports exactly three deployment/execution modes: (1) Local mode - runs the driver and executors on a single machine, useful for development and testing; (2) Client mode - the driver runs on the machine that submits the job while executors run on the cluster; (3)…
Question
Spark's execution/deployment mode determines where the driver and executors are physically located when a Spark application is run. Which of the following Spark execution/deployment modes does not exist? If they all exist, please indicate so with Response E.
Options
- AClient mode
- BCluster mode
- CStandard mode
- DLocal mode
- EAll of these execution/deployment modes exist
How the community answered
(23 responses)- B9% (2)
- C87% (20)
- E4% (1)
Explanation
Apache Spark supports exactly three deployment/execution modes: (1) Local mode - runs the driver and executors on a single machine, useful for development and testing; (2) Client mode - the driver runs on the machine that submits the job while executors run on the cluster; (3) Cluster mode - both the driver and executors run on the cluster, so the submitting machine can disconnect after submission. 'Standard mode' is not a real Spark deployment mode and does not exist in the Spark ecosystem.
Topics
Community Discussion
No community discussion yet for this question.