You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-access-data-batch-endpoints-jobs.md
+80-73Lines changed: 80 additions & 73 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,8 +97,20 @@ Data from Azure Machine Learning registered data stores can be directly referenc
97
97
98
98
# [REST](#tab/rest)
99
99
100
-
Use the Azure ML CLI, Azure ML SDK for Python, or Studio to get the subscription ID, resource group, workspace, and name of the data store. You will need them later.
Learn how to troubleshoot and solve, or work around, common errors you may come across when using [batch endpoints](how-to-use-batch-endpoint.md) for batch scoring.
20
+
Learn how to troubleshoot and solve, or work around, common errors you may come across when using [batch endpoints](how-to-use-batch-endpoint.md) for batch scoring. In this article you will learn:
21
+
22
+
> [!div class="checklist"]
23
+
> * How [logs of a batch scoring job are organized](#understanding-logs-of-a-batch-scoring-job).
24
+
> * How to [solve common errors](#common-issues).
25
+
> * Identify [not supported scenarios in batch endpoints](#limitations-and-not-supported-scenarios) and their limitations.
21
26
22
27
## Understanding logs of a batch scoring job
23
28
@@ -179,3 +184,29 @@ __Context__: When invoking a batch endpoint using its REST APIs.
179
184
__Reason__: The access token used to invoke the REST API for the endpoint/deployment is indicating a token that is issued for a different audience/service. Azure Active Directory tokens are issued for specific actions.
180
185
181
186
__Solution__: When generating an authentication token to be used with the Batch Endpoint REST API, ensure the `resource` parameter is set to `https://ml.azure.com`. Please notice that this resource is different from the resource you need to indicate to manage the endpoint using the REST API. All Azure resources (including batch endpoints) use the resource `https://management.azure.com` for managing them. Ensure you use the right resource URI on each case. Notice that if you want to use the management API and the job invocation API at the same time, you will need two tokens. For details see: [Authentication on batch endpoints (REST)](how-to-authenticate-batch-endpoint.md?tabs=rest).
187
+
188
+
## Limitations and not supported scenarios
189
+
190
+
When designing machine learning solutions that rely on batch endpoints, some configurations and scenarios may not be supported.
191
+
192
+
The following __workspace__ configurations are __not supported__:
193
+
194
+
* Workspaces configured with an Azure Container Registries with Quarantine feature enabled.
195
+
* Workspaces with customer-managed keys (CMK).
196
+
197
+
The following __compute__ configurations are __not supported__:
198
+
199
+
* Azure ARC Kubernetes clusters.
200
+
* Granular resource request (memory, vCPU, GPU) for Azure Kubernetes clusters. Only instance count can be requested.
201
+
202
+
The following __input types__ are __not supported__:
203
+
204
+
* Tabular datasets (V1).
205
+
* Folders and File datasets (V1).
206
+
* MLtable (V2).
207
+
208
+
## Next steps
209
+
210
+
*[Author scoring scripts for batch deployments](how-to-batch-scoring-script.md).
211
+
*[Authentication on batch endpoints](how-to-authenticate-batch-endpoint.md).
212
+
*[Network isolation in batch endpoints](how-to-secure-batch-endpoint.md).
0 commit comments