
Answer-first summary for fast verification
Answer: The globally unique ID of the newly triggered run.
The run_id in the response represents a unique identifier for the specific execution (run) of the job triggered via the CLI. Each job run in Databricks is assigned a globally unique ID (run_id) to distinguish it from other runs, even for the same job. This ensures traceability and uniqueness across the workspace. Options A, C, and D are incorrect because run_id is not derived from concatenating job_id with run counts (A), tracking total runs of the job definition (C), or returning the job_id itself (D).
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 globally unique ID of the newly triggered run.
C
The number of times the job definition has been run in this workspace.
D
The job_id is returned in this field.
No comments yet.