Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed to run adb-with-private-link-standard #177

Open
asagarshinde opened this issue Feb 18, 2025 · 2 comments
Open

Failed to run adb-with-private-link-standard #177

asagarshinde opened this issue Feb 18, 2025 · 2 comments
Labels

Comments

@asagarshinde
Copy link

I tried multiple times and getting below error.

│ ----[start]----
│ {"status":"Failed","error":{"code":"ConcurrentUpdateError","message":"Call to Microsoft.Databricks/workspaces failed. Error message: Workspace update could not be completed because it has been updated by another process.","details":[]}}

@macdrai
Copy link

macdrai commented Feb 26, 2025

I'm having the exact same issue. To reproduce, copy the adb-with-private-link-standard and run terraform apply on an Azure backend.

@HariGS-DB HariGS-DB added the azure label Mar 2, 2025
@Trifa01
Copy link

Trifa01 commented Mar 17, 2025

I had the same problem, the conflict seems to be coming from the backend and frontend endpoints. I forced a dependency on the backend with depend_on to avoid this:

resource "azurerm_private_endpoint" "dp_dpcp" {
  name                = "dpcppvtendpoint-dp"
  location            = azurerm_resource_group.dp_rg.location
  resource_group_name = azurerm_resource_group.dp_rg.name
  subnet_id           = azurerm_subnet.dp_plsubnet.id

  private_service_connection {
    name                           = "ple-${local.prefix}-dp-dpcp"
    private_connection_resource_id = azurerm_databricks_workspace.dp_workspace.id
    is_manual_connection           = false
    subresource_names              = ["databricks_ui_api"]
  }

  private_dns_zone_group {
    name                 = "dp-private-dns-zone-dpcp"
    private_dns_zone_ids = [azurerm_private_dns_zone.dnsdpcp.id]
  }
depends_on = [ azurerm_private_endpoint.front_pe, azurerm_private_endpoint.dp_dbfspe_blob, azurerm_private_endpoint.dp_dbfspe_dfs, azurerm_private_endpoint.transit_auth ]
  }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants