DP-750 · Deploy and maintain data pipelines and workloads
DP-750 · Deploy and maintain data pipelines and workloads
ingest_raw' loads files into a bronze Delta table, 'clean_data' deduplicates and validates the bronze table into a silver table, and 'build_aggregates' computes daily summaries from the silver table into a gold table. The engineer wants the job to guarantee that 'clean_data' never starts before 'ingest_raw' finishes, and 'build_aggregates' never starts before 'clean_data' finishes, even if a run is retried or a task takes longer than usual. How should the engineer design the order of operations in the Databricks Jobs UI?