Certified Associate Developer for Apache Spark Exam QuestionsBrowse all questions from this exam

Certified Associate Developer for Apache Spark Exam - Question 96


Of the following, which is the coarsest level in the Spark execution hierarchy?

Show Answer
Correct Answer: B

In the Spark execution hierarchy, a Job is the coarsest level. A Job corresponds to a high-level action, such as count() or save(), that results in a set of parallel tasks executed by the Spark engine. Below the Job level, there are Stages, which are further divided into Tasks; Executors are the processes launched for executing tasks and Slots are resources allocated to tasks in executors.

Discussion

1 comment
Sign in to comment
Sowwy1Option: B
Apr 1, 2024

B. Job