Implementing Data Engineering Solutions Using Microsoft Fabric — Question 34
You have a Fabric workspace that contains a lakehouse and a semantic model named Model1.
You use a notebook named Notebook1 to ingest and transform data from an external data source.
You need to execute Notebook1 as part of a data pipeline named Pipeline1. The process must meet the following requirements:
• Run daily at 07:00 AM UTC.
• Attempt to retry Notebook1 twice if the notebook fails.
• After Notebook1 executes successfully, refresh Model1.
Which three actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
Answer options
- A. Place the Semantic model refresh activity after the Notebook activity and link the activities by using the On success condition.
- B. From the Schedule settings of Pipeline1, set the time zone to UTC.
- C. Set the Retry setting of the Notebook activity to 2.
- D. From the Schedule settings of Notebook1, set the time zone to UTC.
- E. Set the Retry setting of the Semantic model refresh activity to 2.
- F. Place the Semantic model refresh activity after the Notebook activity and link the activities by using an On completion condition.
Correct answer: A, B, C
Explanation
The correct answers are A, B, and C because they fulfill the requirements for executing Notebook1 within Pipeline1. Answer A ensures the refresh of Model1 occurs only after a successful execution of Notebook1, while answer B sets the correct time zone for the pipeline's schedule, and answer C configures the retry attempts for the notebook activity. The other options either do not address the requirements or are not necessary for this specific scenario.