Azure Synapse Analytics is not getting registered when working with Lab " Explore Azure Synapse Analytics"

Monish Bhanushali 10 Reputation points
2024-12-14T10:38:47.2766667+00:00

getting error while trying the lab Explore Azure Synapse Analytics

Registering resource providers...

Microsoft.Synapse is not yet registered. Waiting for 30 seconds before rechecking...

Microsoft.Synapse is not yet registered. Waiting for 30 seconds before rechecking...

Microsoft.Synapse is not yet registered. Waiting for 30 seconds before rechecking...

Microsoft.Synapse is not yet registered. Waiting for 30 seconds before rechecking...

Microsoft.Synapse is not yet registered. Waiting for 30 seconds before rechecking...

Failed to register Microsoft.Synapse after 5 attempts.

Microsoft.Sql is not yet registered. Waiting for 30 seconds before rechecking...

Microsoft.Sql is not yet registered. Waiting for 30 seconds before rechecking...

Azure Synapse Analytics
Azure Synapse Analytics
An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
5,123 questions
{count} votes

1 answer

Sort by: Most helpful
  1. AnnuKumari-MSFT 33,986 Reputation points Microsoft Employee
    2024-12-16T05:30:52.8533333+00:00

    Hi @Monish Bhanushali ,

    Welcome to Microsoft Q&A platform and thanks for posting your query here.

    As per my understanding you are trying to replicate the lab provided for Azure synapse analytics where you are trying to provision Azure synapse analytics resource and explore various possibilities like creation of data pipelines, notebooks, use serverless sql pool, spark pool etc. However, you are facing an error : "Microsoft.Synapse is not yet registered. Waiting for 30 seconds before rechecking" and "Microsoft.Sql is not yet registered. Waiting for 30 seconds before rechecking" .

    Could you please confirm when exactly are you getting this error ? Is it while deploying Azure synapse analytics resource or are you manually trying to register the above 2 resource providers- Microsoft.Synapse and Microsoft.Sql ?

    First of all, kindly make sure that you possess either 'Owner' role or 'Contributor' role in Azure Synapse analytics workspace. "You must have permission to do the /register/action operation for the resource provider. The permission is included in the Contributor and Owner roles."

    If still getting error, kindly try to register the resource provider manually if not tried yet.

    Here are the steps to do that via Azure portal : Register resource provider

    Alternatively, you can try registering the resource provider using other options like Azure CLI or Azure powershell , using below commands:

    1. Using Azure CLI: If you have Azure CLI installed, you can manually register the resource providers:
         bash
         
         az provider register --namespace Microsoft.Synapse
         az provider register --namespace Microsoft.sql
      
         powershell
         
         Register-AzResourceProvider -ProviderNamespace "Microsoft.Synapse"
         Register-AzResourceProvider -ProviderNamespace "Microsoft.Sql"
      
    0 comments No comments

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.