Databricks Certified Data Engineer Professional — Question 95
The Databricks CLI is used to trigger a run of an existing job by passing the job_id parameter. The response that the job run request has been submitted successfully includes a field run_id.
Which statement describes what the number alongside this field represents?
Answer options
- A. The job_id and number of times the job has been run are concatenated and returned.
- B. The total number of jobs that have been run in the workspace.
- C. The number of times the job definition has been run in this workspace.
- D. The job_id is returned in this field.
- E. The globally unique ID of the newly triggered run.
Correct answer: E
Explanation
The correct answer is E because the run_id is specifically designed to be a globally unique identifier for the new job run that has just been triggered. The other options incorrectly describe the nature of the run_id, either confusing it with job execution counts or misrepresenting its purpose in relation to job_id.