Medium severityconfiguration
Power BI Refresh Error:
BUNDLE_VALIDATION_FAILED
What does this error mean?
The 'databricks bundle validate' command detected structural or semantic errors in the bundle YAML configuration before any deployment was attempted.
Common causes
- 1A required field is missing in a job, pipeline, or cluster definition within databricks.yml
- 2A variable reference uses the wrong substitution syntax (e.g. ${var.name} vs ${bundle.name})
- 3A resource references a path, library, or artifact that does not resolve within the bundle directory
- 4An unsupported field was added that is valid in the REST API but not yet supported by the DAB schema
How to fix it
- 1Step 1: Run 'databricks bundle validate' locally to see the full list of validation errors with line numbers.
- 2Step 2: Fix any missing required fields — the output names the schema path (e.g., resources.jobs.my_job.tasks[0].task_key).
- 3Step 3: Check variable substitution syntax — bundle variables use ${var.my_var} and bundle-level values use ${bundle.environment}.
- 4Step 4: Ensure all notebook and file paths referenced in the bundle are relative to the bundle root or use correct workspace paths.
- 5Step 5: Consult the Databricks configuration reference for the supported fields for your CLI version.