I am trying to add a data migration Service instance using PowerShell and I keep getting the following error:

Priyanka.T (Quadrant Resource) 1 Reputation point
2020-06-18T06:15:05.607+00:00

PS C:\WINDOWS\system32> $DMS = New-AzDataMigrationService -ResourceGroupName DM -Name DMS -Location Eastus -Sku Premium_4vCores -VirtualSubnetId $vSubNet.id New-AzDataMigrationService : Long running operation failed with status 'Failed'. Additional Info:'The provisioning of queue for service please help me to fix this issue ![10240-screenshot-515-li.jpg][1] [1]: /api/attachments/10240-screenshot-515-li.jpg?platform=QnA

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,381 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Thierry DEMAN-BARCELO 491 Reputation points MVP
    2020-06-18T16:38:25.85+00:00

    Hello,

    it seems that you have reached a limit of 1000 of entities (Queues, in your case).

    Each partitioned queue or topic counts toward the quota of 1,000 entities per namespace.
    If called from the management API, the exception QuotaExceededException is received by the calling code.

    You have all limits indicated here :

    https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-quotas

    Can you create a new namespace?

    Regards,

    0 comments No comments