
Explanation:
To ensure the publish task runs only after both validation tasks have succeeded, the dependency setting should be 'all dependencies succeed'. This is a standard pattern in workflow orchestration for ensuring all prerequisites are met.
You are designing a Lakeflow Job with the following workflow: A data ingestion task runs first. Two validation tasks run in parallel after ingestion. A publish task should run only if both validation tasks succeed. How should the publish task be configured?
A
Set the publish task to run if at least one dependency succeeds
B
Remove dependencies and schedule the publish task separately
C
Set the publish task to run if all dependencies succeed
D
Set the publish task to run if any dependency completes
No comments yet.