Exam Certified Data Engineer Professional All QuestionsBrowse all questions from this exam
Question 12

A junior data engineer has configured a workload that posts the following JSON to the Databricks REST API endpoint 2.0/jobs/create.

Assuming that all configurations and referenced resources are available, which statement describes the result of executing this workload three times?

    Correct Answer: C

    When the workload is executed three times, it will create three separate jobs named "Ingest new data" in the workspace. Since the JSON definition does not include any scheduling information, these jobs will be defined but not executed. Each job creation will result in a unique job ID even though the names are the same, and they will only run if explicitly scheduled or triggered subsequently.

Discussion
sturcuOption: C

databricks jobs create will create a new job with the same name each time it is run. In order to overwrite the extsting job you need to run databricks jobs reset

bob_Option: C

Answer is correct. The 3 API calls create 3 jobs with the same name but different job ids. There is no schedule defined so will not execute.

coercionOption: C

Learnt new thing : DBX can have duplicate job names (Job ID will be different). So three jobs will be created with three job ids but it will not run as no schedule is mentioned.

EertyyOption: A

correct answer is A, because an api can create can create same job with same name if executed thrice

Eertyy

to add more: when you execute this workload three times, it will define three new jobs in the workspace, each with the name "Ingest new data." These jobs can be scheduled to run daily or at a specified frequency, depending on how they are configured.

Starvosxant

Ok. So Tell me the schedule these Jobs will run? Dont know? Why? Maybe because it is not specified, or even configured. So the answer is correct. Create 3 Jobs but none will be executed.

mwyopmeOption: D

therefore answer: D

imatheushenriqueOption: C

C. Three new jobs named "Ingest new data" will be defined in the workspace, but no jobs will be executed.

franciscodmOption: C

C for sure

spaceexplorerOption: C

Correct answer is C

Jay_98_11Option: C

C is correct

kz_dataOption: C

Correct answer is C

mwyopmeOption: D

only one job, why 3? - because there 3 lines of JSON?? answer should be: One new job named "Ingest new data" will be defined in the workspace, but it will not be executed.

vsydoriak99

Because the create command was run 3 times. Databricks can have several jobs with the same name