Microsoft
DP-700 · Question #123
You need to modify the DAG definition to meet the following requirements: Ensure that notebook_01 and notebook_02 run in parallel. Ensure that notebook_03 only runs after the execution of notebook_01
Sign in or unlock DP-700 to reveal the answer and full explanation for question #123. The question stem and answer options stay visible for context.
Design and implement data ingestion and transformation
Question
You need to modify the DAG definition to meet the following requirements:
- Ensure that notebook_01 and notebook_02 run in parallel.
- Ensure that notebook_03 only runs after the execution of notebook_01 and notebook_02 is complete.
Options
- ACreate a second DAG definition. Move notebook_03 and notebook_02 to the new DAG definition.
- BMove the notebook_03 declaration to the top of the DAG definition. Add a concurrency to notebook_02 and notebook_01.
- CCreate two stages in the DAG definition. Add notebook_03 to the first stage. Add notebook_01 and notebook_02 to the second stage.
- DPlace the declaration of notebook_03 to the top of the DAG definition. Add a new stage that contains notebook_01 and notebook_02.
Unlock DP-700 to see the answer
You've previewed enough free DP-700 questions. Unlock DP-700 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.
Topics
#DAG#Workflow Orchestration#Task Dependencies#Parallel Execution