
Answer-first summary for fast verification
Answer: The globally unique ID of the newly triggered run.
The `run_id` is a globally unique identifier for the newly triggered run of a job in Databricks. It does not represent the job_id, the number of times the job has been run, or any concatenated values. Instead, it uniquely identifies each execution instance of a job, ensuring that every run can be individually tracked and managed. This makes option E the correct choice as it accurately describes the purpose of the `run_id` field.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
When using the Databricks CLI to trigger a run of an existing job by specifying the job_id parameter, the successful response includes a run_id field. What does the numerical value associated with this field signify?
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.
No comments yet.