What is the difference between client mode and cluster mode in spark?
Answer Posted / Nawal Kishore
In Apache Spark, Client Mode (also known as Local Mode) runs the entire application on a single JVM with multiple threads. The driver program creates executors locally to execute tasks. Cluster Mode, however, runs both the driver and executors on different nodes of a Hadoop or standalone cluster.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers