nerdexam
Databricks

CERTIFIED-DATA-ENGINEER-PROFESSIONAL · Question #57

Which REST API call can be used to review the notebooks configured to run as tasks in a multi- task job?

The correct answer is D. /jobs/get. The GET /jobs/get endpoint returns the full job configuration, including all defined tasks and their associated notebooks, parameters, clusters, and dependencies. This is a job-level metadata call. The other endpoints serve different purposes: /jobs/list returns a summary list…

Managing Databricks Workflows

Question

Which REST API call can be used to review the notebooks configured to run as tasks in a multi- task job?

Options

  • A/jobs/runs/list
  • B/jobs/runs/get-output
  • C/jobs/runs/get
  • D/jobs/get
  • E/jobs/list

How the community answered

(30 responses)
  • B
    3% (1)
  • C
    7% (2)
  • D
    90% (27)

Explanation

The GET /jobs/get endpoint returns the full job configuration, including all defined tasks and their associated notebooks, parameters, clusters, and dependencies. This is a job-level metadata call. The other endpoints serve different purposes: /jobs/list returns a summary list of jobs without task details; /jobs/runs/list returns historical run records; /jobs/runs/get returns details about a specific run (runtime state, not the static configuration); /jobs/runs/get-output retrieves the output/result of a completed run. To inspect what notebooks are configured as tasks (the job definition itself, not a run instance), /jobs/get is the correct call.

Topics

#Databricks Jobs API#REST API#Job Configuration#Notebook Tasks

Community Discussion

No community discussion yet for this question.

Full CERTIFIED-DATA-ENGINEER-PROFESSIONAL Practice