Getting Error while deploying the Azure Managed SQL Instance Pool

Varun R 0 Reputation points
2024-04-04T06:22:03.0666667+00:00
  1. Powershell script used to deploy the Instance pool

# Identify the SubnetId

$virtualNetwork = Get-AzVirtualNetwork -Name vnet-DB -ResourceGroupName databaselab

$miSubnet = Get-AzVirtualNetworkSubnetConfig -Name subnet-MI -VirtualNetwork $virtualNetwork

$miSubnetConfigId = $miSubnet.Id

# Create the instance pool

$instancePool = New-AzSqlInstancePool -ResourceGroupName databaselab -Name instancepool001 -SubnetId $miSubnetConfigId -LicenseType LicenseIncluded -VCore 8 -Edition GeneralPurpose -ComputeGeneration Gen5 -Location Eastus

<#

Error:

New-AzSqlInstancePool: Long running operation failed with status 'Failed'. Additional Info:'An instance pool with name 'instancepoolxxx' is busy with another ongoing operation'

User's image

Can anyone help me in resolving this issue?

Azure SQL Database
{count} votes

1 answer

Sort by: Most helpful
  1. Deepanshukatara-6769 9,195 Reputation points
    2024-04-04T07:26:48.4466667+00:00

    Hello Varun

    Welcome to Microsoft Q&A Platform.

    Internal server errors use to be related to transient platform issues, can you try again or use a different region as test? For example takes Central US instead of East US in your case , if it works then check if some ongoing operation related to same running in East US region. Once the operation finishes, you can retry creating the instance pool again in that same region

    Best regards,


    Please don’t forget to "Accept the answer" and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.


Your answer

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