Databricks Certified Data Engineer - Professional

Databricks Certified Data Engineer - Professional

Get started today

Ultimate access to all questions.


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)




Explanation:

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.