
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
Question 36 A Delta Live Table pipeline includes two datasets defined using STREAMING LIVE TABLE. Three datasets are defined against Delta Lake table sources using LIVE TABLE.
The table is configured to run in Development mode using the Triggered Pipeline Mode.
Assuming previously unprocessed data exists and all definitions are valid, what is the expected outcome after clicking Start to update the pipeline?
A
All datasets will be updated once and the pipeline will shut down. The compute resources will be terminated.
B
All datasets will be updated at set intervals until the pipeline is shut down. The compute resources will be deployed for the update and terminated when the pipeline is stopped.
C
All datasets will be updated at set intervals until the pipeline is shut down. The compute resources will persist after the pipeline is stopped to allow for additional testing.
D
All datasets will be updated once and the pipeline will shut down. The compute resources will persist to allow for additional testing
E
All datasets will be updated continuously and the pipeline will not shut down. The compute resources will persist with the pipeline
Explanation:
Let’s break this down carefully.
Key facts from the question:
STREAMING LIVE TABLELIVE TABLE (against Delta Lake sources)In Development mode:
Since this is Development mode + Triggered, the behavior is:
STREAMING LIVE TABLE: In Triggered mode, these will process only new data since last run (or all data if first run).LIVE TABLE (batch): In Triggered mode, these will run once.All datasets are updated once in a single DAG execution, then the pipeline stops.
Correct answer: D