
Explanation:
In Azure Data Factory/Azure Synapse Analytics pipelines, the final pipeline status is determined by the status of all activities that don't have subsequent dependencies. When implementing error handling patterns, we need to ensure that at least one path in the pipeline completes successfully to guarantee the overall pipeline status shows as "Succeeded."
A skipped dependency on the "Upon Success" activity creates a robust error handling pattern known as the "Do If Skip Else" pattern. Here's how it works:
This configuration guarantees that:
This approach aligns with Azure's recommended patterns for ensuring pipeline success status while maintaining proper error handling capabilities.
Ultimate access to all questions.
You have an Azure Synapse Analytics pipeline that includes a failure path. You need to add a Set Variable activity to the pipeline to ensure the final pipeline status is reported as "Succeeded" upon completion.
What should you configure for the Set Variable activity?

A
a skipped dependency on the Upon Failure activity
B
a skipped dependency on the Upon Success activity
C
a success dependency on the Business Activity That Fails activity
D
a failure dependency on the Upon Failure activity
No comments yet.