InterviewSolution
Saved Bookmarks
| 1. |
Why we need the master driver in spark? |
|
Answer» Master driver is central point and the entry point of the Spark Shell which is supporting this LANGUAGE (Scala, Python, and R). Below is the sequential process, which driver follows to execute the spark job.
The complete process can track by cluster manager user interface. Driver exposes the information about the running spark application through a WEB UI at port 4040 |
|