The workspace is stuck in a long‑running delete because the appliance is already in “Deleting” state. To clean this up, use one of the supported force‑deletion paths that explicitly target Databricks workspaces, rather than a generic az resource call.
Use one of these approaches:
- Force delete the workspace (recommended)
- Using Azure CLI:
az databricks workspace delete \
--name <NameOfWorkspace> \
--resource-group <NameOfResourceGroup> \
--force-deletion true \
--yes
This command deletes the workspace and its managed resource group, including the workspace catalog and all associated data when Unity Catalog is enabled.
- Using Azure PowerShell:
Remove-AzDatabricksWorkspace `
-Name <NameOfWorkspace> `
-ResourceGroupName <NameOfResourceGroup> `
-ForceDeletion
Force deletion is irreversible and removes the workspace catalog, managed tables, volumes, and the managed resource group. Ensure any required data is backed up before running these commands.
- Force delete via resource group deletion
If the workspace is the only remaining resource and can be removed with the resource group:
- Using Azure CLI:
az group delete \
--name <NameOfResourceGroup> \
--force-deletion-types Microsoft.Databricks/workspaces
- Using Azure PowerShell:
Remove-AzResourceGroup -Name <NameOfResourceGroup> `
-ForceDeletionType Microsoft.Databricks/workspaces -Force
This explicitly tells Azure to force delete Databricks workspaces in that resource group, which clears stuck “Deleting” states.
- Be aware of Unity Catalog retention behavior
If Unity Catalog is enabled by default on the workspace and force deletion is not used, the default workspace catalog and its storage (DBFS storage account and access connector) are retained even after workspace deletion. To fully remove these, force deletion must be used as shown above.
If, after running the force‑deletion commands, the provisioning state remains “Deleting” for an extended period, open a support case with Azure Support, as backend intervention may be required to clear the appliance state.
References: