Hi @Shrishti Kumari
You're encountering an error while trying to create a Delta Live Tables (DLT) pipeline in Azure Databricks due to VM size (SKU) unavailability or quota limitations. Even though you've selected a configuration with 1 driver and 1 worker node using the Standard_D3_v2 VM type well within the 10-core limit of your Databricks trial Azure is unable to provision the required VMs in your selected region (Australia Central). This is because your current subscription either has no quota assigned for the requested VM family in that region or the VM type is not available due to capacity constraints. Your quota page confirms that most VM families, including Dv2, DSv2, and Dv3, have a quota of 0 cores, which effectively blocks any deployment in that region.
To resolve this, you should create a new Databricks workspace in a different region where VM quotas are available and try using smaller VM types like Standard_DS1_v2 or DS2_v2, which consume fewer cores and are more likely to be available under your trial limits. If needed and allowed by your subscription type, you may also request a quota increase through the Azure portal.
You can refer to Microsoft’s official documentation to verify and guide these steps:
https://learn.microsoft.com/en-us/azure/databricks/getting-started/free-trial
https://learn.microsoft.com/en-us/azure/quotas/quickstart-increase-quota-portal
https://learn.microsoft.com/en-us/azure/virtual-machines/sizes/overview?tabs=breakdownseries%2Cgeneralsizelist%2Ccomputesizelist%2Cmemorysizelist%2Cstoragesizelist%2Cgpusizelist%2Cfpgasizelist%2Chpcsizelist#general-purpose
I hope this information helps.
Kindly consider upvoting the comment if the information provided is helpful. This can assist other community members in resolving similar issues