Databricks Certified Data Engineer Associate — Question 22

A data engineer has a single-task Job that runs each morning before they begin working. After identifying an upstream data issue, they need to set up another task to run a new notebook prior to the original task.
Which of the following approaches can the data engineer use to set up the new task?

Answer options

Correct answer: B

Explanation

The correct answer is B because adding the new task as a dependency of the original task ensures that the new notebook runs before the existing task. Option A is incorrect as cloning does not establish the correct order, while C reverses the dependency, which is not what the data engineer wants. D suggests running concurrently, which does not solve the dependency issue, and E unnecessarily creates a new Job.