Azure Databricks stuck in deleting state for 4+ days

Supattra Tangsakulrahong 0 Reputation points
2026-03-21T16:25:21.6+00:00

I am experiencing an issue with Azure Databricks where the workspace has been stuck in a "Deleting" state for more than 4 days.

What I have tried:

  • Attempted to delete the Databricks workspace from Azure Portal
  • Attempted to delete the managed resource group via Portal and Azure CLI
  • Verified there are no resource locks
  • The deletion operation continues to fail or remains stuck

This appears to be a backend issue.

Support Plan: Developer (no direct technical support ticket available)

Could you please assist in checking and clearing the stuck resources from backend?

Thank you.

Azure Databricks
Azure Databricks

An Apache Spark-based analytics platform optimized for Azure.

0 comments No comments

1 answer

Sort by: Newest
  1. AI answer

    2026-03-21T16:25:37.94+00:00

    Azure Databricks workspace and managed resource group deletion issues that remain stuck for multiple days require backend intervention from the Azure/Databricks service teams; this cannot be resolved solely from the portal, CLI, or PowerShell.

    From the documented behavior:

    1. Deleting an Azure Databricks workspace:
      • Deleting the workspace from the Azure portal should clean up most compute resources automatically.
      • The managed resource group and DBFS storage/access connector can be retained depending on whether force deletion is used and whether Unity Catalog is enabled.
      • If the workspace deployment or deletion fails, the workspace can remain in a failed or partially deleted state, and the managed resource group may persist.
    2. Soft-delete and retention behavior:
      • After a workspace is deleted, it enters a soft-deleted state for 7 days before permanent deletion.
      • During this period, Azure Databricks-managed metadata may be recoverable, but Azure resources (VMs, disks, networking) are cleaned up immediately.
      • This retention applies to workspace metadata, not to Azure resource groups themselves.
    3. Force deletion options (for future or when the control plane is responsive):
      • To fully remove the workspace catalog and managed resource group, use force deletion:
        • Azure Portal: when deleting the workspace, select the option to delete the workspace along with its managed resource group.
        • Azure PowerShell:
                 Remove-AzDatabricksWorkspace -ForceDeletion -Name <NameOfWorkspace> -ResourceGroupName <NameOfResourceGroup>
          
        • Azure CLI:
                 az databricks workspace delete --force-deletion --name <NameOfWorkspace> --resource-group <NameOfResourceGroup>
          
      • Alternatively, delete the parent resource group with force deletion types:
        • Azure CLI:
                 az group delete --name <NameOfResourceGroup> --force-deletion-types Microsoft.Databricks/workspaces
          
        • Azure PowerShell:
                 Remove-AzResourceGroup -Name <NameOfResourceGroup> -ForceDeletionType Microsoft.Databricks/workspaces -Force
          
    4. Unity Catalog retention behavior (if enabled by default):
      • If Unity Catalog is auto-enabled, the default workspace catalog and its storage container are intentionally retained even after workspace deletion.
      • The managed resource group is converted to a regular resource group and kept, along with the access connector and storage container.
      • To completely remove this catalog and all associated data, force deletion of the workspace catalog is required as described above.

    Given that the workspace and managed resource group have been stuck in deleting for 4+ days and multiple delete attempts via portal and CLI have failed, this matches a backend/control-plane issue pattern similar to other Azure resources stuck in creating/deleting states, which in practice has been resolved only by the product team from the backend.

    Actionable steps based on the documented options:

    1. If not yet attempted with force flags, try a forced workspace deletion:
      • Using Azure CLI (from a context with appropriate permissions):
             az databricks workspace delete --force-deletion --name adbwaewdev --resource-group RG_WAEW_DEVELOP
        
      • Or using PowerShell:
             Remove-AzDatabricksWorkspace -ForceDeletion -Name adbwaewdev -ResourceGroupName RG_WAEW_DEVELOP
        
    2. If the entire parent resource group can be removed and is not needed for other resources, attempt forced RG deletion:
      • Azure CLI:
             az group delete --name RG_WAEW_DEVELOP --force-deletion-types Microsoft.Databricks/workspaces
        
      • Azure PowerShell:
             Remove-AzResourceGroup -Name RG_WAEW_DEVELOP -ForceDeletionType Microsoft.Databricks/workspaces -Force
        
      • This is destructive and permanently removes all resources in the resource group.
    3. If these forced deletion options still fail or the workspace remains stuck in Deleting, backend intervention by Azure/Databricks support is required to clear the stuck control-plane state and remove the managed resource group. This is consistent with other Azure cases where resources stuck in Creating/Deleting were ultimately resolved only by the service team.

    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.