Skip to content

Commit bffa0dc

Browse files
Improvised Troubleshoot.md file
1 parent c7b4d74 commit bffa0dc

File tree

1 file changed

+20
-18
lines changed

1 file changed

+20
-18
lines changed

docs/Troubleshoot.md

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,8 @@ based on available quota you can deploy application otherwise, you can request f
100100

101101
<details>
102102
<summary><b>DeploymentModelNotSupported</b></summary>
103-
104-
<br>
105-
If you hardcode the GPT model or version to anything other than gpt-4o, you will encounter a <b>DeploymentModelNotSupported</b> prevent this, please use the GPT model <b>gpt-4o</b> with model version <b>2024-08-06</b>.
106103

104+
- The updated model may not be supported in the selected region. Please verify its availability in the [Azure AI Foundry models](https://learn.microsoft.com/en-us/azure/ai-foundry/openai/concepts/models?tabs=global-standard%2Cstandard-chat-completions) document.
107105

108106
</details>
109107
<details>
@@ -117,25 +115,30 @@ based on available quota you can deploy application otherwise, you can request f
117115
```
118116
az resource show --ids <Resource ID> --query "properties.provisioningState"
119117
```
118+
- Sample Resource IDs format
119+
- Log Analytics Workspace Resource ID
120+
```
121+
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}
122+
```
123+
- Azure AI Foundry Project Resource ID
124+
```
125+
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{name}
126+
```
120127
- For more information refer [Resource Not Found errors solutions](https://learn.microsoft.com/en-us/azure/azure-resource-manager/troubleshooting/error-not-found?tabs=bicep)
121128

122129
</details>
123130
<details>
124131
<summary><b>ResourceNameInvalid</b></summary>
125132

126-
- Ensure the resource name is within the allowed length and naming rules defined for that specific resource type.
127-
- Avoid using consecutive hyphens (--) in the resource name.
128-
- Do not include unsupported special characters, as each resource type enforces specific naming validations.
133+
- Ensure the resource name is within the allowed length and naming rules defined for that specific resource type, you can refer [Resource Naming Convention](https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/resource-name-rules) document.
134+
129135
</details>
130136
<details>
131137
<summary><b>ServiceUnavailable/ResourceNotFound</b></summary>
132138

133-
- Some Locations in MACAE does not support for deployment for specific resources so please avoid using below resources
134-
```
135-
eastus, westus, australiacentral, easteurope2
136-
```
139+
- Regions are restricted to guarantee compatibility with paired regions and replica locations for data redundancy and failover scenarios based on articles [Azure regions list](https://learn.microsoft.com/en-us/azure/reliability/regions-list) and [Azure Database for MySQL Flexible Server - Azure Regions](https://learn.microsoft.com/azure/mysql/flexible-server/overview#azure-regions).
137140

138-
- You can request more quota, refer [Quota Request](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/create-support-request-quota-increase)
141+
- You can request more quota, refer [Quota Request](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/create-support-request-quota-increase) Documentation
139142

140143

141144
</details>
@@ -159,7 +162,7 @@ based on available quota you can deploy application otherwise, you can request f
159162
This error can occur only when user hardcoding the CosmosDB Service name. To avoid this you can try few below suggestions.
160163
- Verify resource names are globally unique.
161164
- If you already created an account/resource with same name in another subscription or resource group, check and delete it before reusing the name.
162-
- By dedault in this template we are using unique prefix with every resource/account name to avoid this kind for errors.
165+
- By default in this template we are using unique prefix with every resource/account name to avoid this kind for errors.
163166
</details>
164167
<details>
165168
<summary><b>NetcfgSubnetRangeOutsideVnet</b></summary>
@@ -176,6 +179,7 @@ This error can occur only when user hardcoding the CosmosDB Service name. To avo
176179
- <b>Verify ACR configuration:</b> If ACR is included, review its settings to ensure they comply with Azure requirements.
177180
- <b>Check export settings:</b> If export is disabled in ACR, make sure public network access is also disabled.
178181
- <b>Dedeploy after fix:</b> Correct the configuration and redeploy. This will prevent the Conflict error during deployment.
182+
- For more information refer [ACR Data Loss Prevention](https://learn.microsoft.com/en-us/azure/container-registry/data-loss-prevention) document.
179183
</details>
180184
<details>
181185
<summary><b>AccountProvisioningStateInvalid</b></summary>
@@ -206,7 +210,7 @@ This error can occur only when user hardcoding the CosmosDB Service name. To avo
206210
<details>
207211
<summary><b>DeploymentCanceled</b></summary>
208212

209-
There might be multiple resions for this error you can follow below steps to troubleshoot.
213+
There might be multiple reasons for this error you can follow below steps to troubleshoot.
210214
1. Check deployment history
211215
- Go to Azure Portal → Resource Group → Deployments.
212216
- Look at the detailed error message for the deployment that was canceled — this will show which resource failed and why.
@@ -268,14 +272,12 @@ Essentially: DeploymentCanceled itself is just a wrapper error — you need to c
268272
- This error occurs when provisioning of a resource is restricted in the selected region.
269273
It usually happens because the service is not available in that region or provisioning has been temporarily disabled.
270274

271-
- Please try creating the resource in another supported region. Example of restricted regions for some services:
272-
```
273-
centralindia, japaneast, brazilsouth
274-
```
275+
- Regions are restricted to guarantee compatibility with paired regions and replica locations for data redundancy and failover scenarios based on articles [Azure regions list](https://learn.microsoft.com/en-us/azure/reliability/regions-list) and [Azure Database for MySQL Flexible Server - Azure Regions](https://learn.microsoft.com/azure/mysql/flexible-server/overview#azure-regions).
275276

276277
- If you need to use the same region, you can request a quota or provisioning exception.
277278
Refer [Quota Request](https://docs.microsoft.com/en-us/azure/sql-database/quota-increase-request) for more details.
278279

279280
</details>
280281

281-
💡 Note: If you encounter any other issues, please feel free to reach out to us or you can refer [Common Deployment Errors](https://learn.microsoft.com/en-us/azure/azure-resource-manager/troubleshooting/common-deployment-errors) Documentation. Thank you!
282+
💡 Note: If you encounter any other issues, you can refer to the [Common Deployment Errors](https://learn.microsoft.com/en-us/azure/azure-resource-manager/troubleshooting/common-deployment-errors) documentation.
283+
If the problem persists, you can also raise an bug in our [MACAE Github Issues](https://github.com/microsoft/Multi-Agent-Custom-Automation-Engine-Solution-Accelerator/issues) for further support.

0 commit comments

Comments
 (0)