Medium severityjob
Power BI Refresh Error:
SUCCESS_WITH_FAILURES
What does this error mean?
A Databricks multi-task job completed, but one or more tasks failed. The overall job run is considered partially successful because the failed tasks were not on the critical path or were configured with 'continue on failure' behavior.
Common causes
- 1One or more tasks in a multi-task job were configured to allow failure without blocking downstream tasks
- 2A non-critical validation or notification task failed while the core data processing tasks succeeded
- 3A task failure was within the retry limit but retries were exhausted without success
- 4A job was designed with failure-tolerant branches and some branches failed
How to fix it
- 1Open the run detail in the Databricks UI and identify which specific tasks failed
- 2Review the failed task logs to understand the root cause
- 3Determine whether the failed task's output is required for downstream correctness
- 4If the task failure is significant, update the job dependency config to make it blocking
- 5Fix the underlying error in the failed task and re-run if needed