An Apache Spark-based analytics platform optimized for Azure.
Hi Gom Kat,
It sounds like your Databricks workspace delete operation is stuck in the “Deleting” state, and because of system-level locks on the managed resource group (MRG), you can’t clear it out or remove the resource group manually. Here’s how you can unblock things:
- Double-check the workspace deletion status • Run: az databricks workspace show
• Look at the ProvisioningState value. If it’s still Deleting, Azure is still cleaning up behind the scenes. Sometimes this takes longer than the typical 5–10 minutes if there are dependencies or transient backend delays.--resource-group <YourRG> --name <YourWorkspace> - Use force-deletion to clean up the workspace catalog + MRG If the normal delete path has stalled, you can force the operation to remove the workspace catalog and managed resource group in one shot. • Azure CLI: az databricks workspace delete
• PowerShell: Remove-AzDatabricksWorkspace--resource-group <YourRG> --name <YourWorkspace> --force-deletion-ResourceGroupName <YourRG> -Name <YourWorkspace> -ForceDeletion - If you’re tearing down the entire RG and want to ensure the workspace goes away, you can delete the RG with a force-deletion type for Databricks: az group delete --name <YourRG> --force-deletion-types Microsoft.Databricks/workspaces
- Wait or escalate • After running the force-deletion, give it a few minutes, then re-run az databricks workspace show to confirm the workspace and its MRG are gone. • If it’s still stuck beyond 30 minutes, open a support ticket—Azure Support can look into any backend locks or hanging operations that your subscription can’t clear on its own.
Hope one of these steps helps you clear out the stuck delete and lets you either redeploy or fully remove the RG. Good luck!
Reference documentation:
• Diagnose and resolve issues with workspace deletion
https://learn.microsoft.com/azure/databricks/admin/workspace/delete-workspace
• Azure CLI delete workspace (including --force-deletion)
• Resolve DeploymentBeingDeleted for Microsoft.Databricks workspaces
• Force-delete resource group with Databricks workspace
Note: This content was drafted with the help of an AI system. Please verify the information before relying on it for decision-making.