Spark Application Lifecycle
Learn the various stages through which a Spark application goes through when executed by the Spark processing engine.
We'll cover the following...
Application life cycle
In this lesson, we'll track the various phases a Spark application goes through from the time it is submitted to when it is marked as completed.
-
As a user, the first step is to submit the Spark job to the cluster. Usually, this involves the user running the
spark-submit
command in a terminal window. The command spawns a process that talks to the cluster manager. If YARN is being used as the cluster management software, then the client process connects to the ...