Creating a Fabric subscription
Nathan Chitwood
0
Reputation points
Nothing happens after I create a Fabric subscription. I have been waiting for 7 hours.
1 answer
-
AI answer
Fabric capacity creation can sometimes take time while the resource is provisioning. To handle a long-running or apparently stuck deployment, use these steps:
- Verify provisioning state in Azure
- In the Azure portal, go to Resource groups and open the resource group where the Fabric capacity was created.
- Select the Microsoft Fabric capacity resource.
- Check the provisioningState in the Overview or Activity log. If it is not
Succeededafter several hours, the deployment is likely stuck.
- Use Azure CLI wait to track or block on completion
- If managing via CLI, use:
az fabric capacity wait \ --resource-group <your-resource-group> \ --name <your-capacity-name> \ --created - This waits until the capacity provisioning state is
Succeeded, or times out based on--timeout(default 3600 seconds). Adjust--intervaland--timeoutas needed.
- If managing via CLI, use:
- If provisioning never reaches Succeeded
- If the capacity remains in a non-succeeded state for many hours, delete the Fabric capacity resource and recreate it, then again monitor the provisioning state (either in the portal or with
az fabric capacity wait).
- If the capacity remains in a non-succeeded state for many hours, delete the Fabric capacity resource and recreate it, then again monitor the provisioning state (either in the portal or with
- Check subscription and quota
- Ensure the Azure subscription used for the Fabric capacity is active and not blocked.
- If capacity creation is failing due to quota limits, submit a quota increase request:
- In Azure portal, open New support request.
- On Problem description, set Issue type to Service and subscription limits (quotas) and select the subscription.
- For Quota type, type Fabric and select Microsoft Fabric.
- On Additional details, open Quota details, specify the required limits, then complete and submit the request.
- If still blocked
- If the subscription itself is not fully active or has an account flag, work with Azure support via the support request flow until the subscription is fully enabled, then retry creating the Fabric capacity.
References:
- az fabric capacity wait
- Buy a Microsoft Fabric subscription
- Microsoft Fabric capacity quotas
- Azure Deployment Takes 70 Minutes to Fail with Obscure Error - Microsoft Q&A
- Deployed Claude and getting API deployment resource is not ready even though it has been an hour - Microsoft Q&A
- Can't find the subscription - Microsoft Q&A
AI-generated content may be incorrect. Read our transparency notes for more information. - Verify provisioning state in Azure
