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

Certified Associate Developer for Apache Spark Exam - Question 4


Which of the following is the most granular level of the Spark execution hierarchy?

Show Answer
Correct Answer: A

In the Spark execution hierarchy, the most granular level is the task. A task represents a unit of work that is executed on a partitioned portion of the data in parallel. Tasks are created by the Spark driver program and assigned to individual executors for execution. Each task operates on a subset of the data and performs a specific operation defined by the Spark application, such as a transformation or an action.

Discussion

4 comments
Sign in to comment
TmDataOption: A
Jun 17, 2023

The correct answer is A. Task. Explanation: In the Spark execution hierarchy, the most granular level is the task. A task represents a unit of work that is executed on a partitioned portion of the data in parallel. Tasks are created by the Spark driver program and assigned to individual executors for execution. Each task operates on a subset of the data and performs a specific operation defined by the Spark application, such as a transformation or an action.

evertonllinsOption: A
Apr 16, 2023

A is correct

MohitsainOption: A
Jun 27, 2023

The correct answer is A. Task.

singh100Option: A
Jul 31, 2023

A. Task