Databricks Certified Data Engineer Professional — Question 118

A Databricks job has been configured with three tasks, each of which is a Databricks notebook. Task A does not depend on other tasks. Tasks B and C run in parallel, with each having a serial dependency on task A.

What will be the resulting state if tasks A and B complete successfully but task C fails during a scheduled run?

Answer options

Correct answer: A

Explanation

The correct answer is A because Tasks A and B complete successfully, meaning their operations are finalized. Task C's failure does not affect the success of Tasks A and B, and thus any operations it may have performed before failing could be valid. Options B and C incorrectly imply a rollback of all changes, while D suggests that Task C's changes would negate the success of Tasks A and B, which is not the case.