Skip to content

Commit 9900c2f

Browse files
authored
Merge pull request #95395 from sorazy/patch-2
Include Model Status Code Dimension
2 parents d43674a + fc8ec14 commit 9900c2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/machine-learning/how-to-troubleshoot-online-endpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ When you access online endpoints with REST requests, the returned status codes a
303303
| 401 | Unauthorized | You don't have permission to do the requested action, such as score, or your token is expired. |
304304
| 404 | Not found | Your URL isn't correct. |
305305
| 408 | Request timeout | The model execution took longer than the timeout supplied in `request_timeout_ms` under `request_settings` of your model deployment config.|
306-
| 424 | Model Error | If your model container returns a non-200 response, Azure returns a 424. Check response headers `ms-azureml-model-error-statuscode` and `ms-azureml-model-error-reason` for more information. |
306+
| 424 | Model Error | If your model container returns a non-200 response, Azure returns a 424. Check the `Model Status Code` dimension under the `Requests Per Minute` metric on your endpoint's [Azure Monitor Metric Explorer](/azure/azure-monitor/essentials/metrics-getting-started). Or check response headers `ms-azureml-model-error-statuscode` and `ms-azureml-model-error-reason` for more information. |
307307
| 429 | Rate-limiting | You attempted to send more than 100 requests per second to your endpoint. |
308308
| 429 | Too many pending requests | Your model is getting more requests than it can handle. We allow 2 * `max_concurrent_requests_per_instance` * `instance_count` requests at any time. Additional requests are rejected. You can confirm these settings in your model deployment config under `request_settings` and `scale_settings`. If you are using auto-scaling, your model is getting requests faster than the system can scale up. With auto-scaling, you can try to resend requests with [exponential backoff](https://aka.ms/exponential-backoff). Doing so can give the system time to adjust. |
309309
| 500 | Internal server error | Azure ML-provisioned infrastructure is failing. |

0 commit comments

Comments
 (0)