
Answer-first summary for fast verification
Answer: /2.0/jobs/clone
The correct REST API endpoint to clone a job is '/2.0/jobs/clone', as it directly supports the cloning functionality without unnecessary overhead, aligning with the requirements for efficiency and scalability. Options B, C, and D are incorrect because they serve different purposes: triggering a job run, exporting job outputs, and retrieving job information, respectively, none of which are related to cloning a job.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.
As a Databricks Certified Data Engineer, you are tasked with automating a workflow that involves cloning a job, triggering a run, and exporting the run output using the REST API. The solution must adhere to the following constraints: minimal operational cost, compliance with data governance policies, and scalability to handle increasing workloads. Given the following code snippet, which REST API endpoint should you use to clone a job, ensuring the solution is both efficient and scalable? (Choose one correct option)
A
/2.0/jobs/clone
B
/2.0/jobs/run-now
C
/2.0/jobs/export
D
/2.0/jobs/get