Databricks Certified Data Engineer Professional — Question 104
When using CLI or REST API to get results from jobs with multiple tasks, which statement correctly describes the response structure?
Answer options
- A. Each run of a job will have a unique job_id; all tasks within this job will have a unique job_id
- B. Each run of a job will have a unique job_id; all tasks within this job will have a unique task_id
- C. Each run of a job will have a unique orchestration_id; all tasks within this job will have a unique run_id
- D. Each run of a job will have a unique run_id; all tasks within this job will have a unique task_id
- E. Each run of a job will have a unique run_id; all tasks within this job will also have a unique run_id
Correct answer: E
Explanation
The correct answer is E because each job run is identified by a unique run_id, and each task within that specific job run is also assigned a unique run_id to differentiate it from other tasks. The other options incorrectly state the relationships of job_id and task_id, which do not apply in this context.