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-use-batch-azure-data-factory.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "Run batch endpoints from Azure Data Factory"
3
3
titleSuffix: Azure Machine Learning
4
-
description: Learn how to use Azure Data Factory to invoke Batch Endpoints.
4
+
description: Learn how to use Azure Data Factory to invoke Batch Endpoints. Azure Data Factory supports pipelines to orchestrate and manage multiple data transformations.
5
5
services: machine-learning
6
6
ms.service: azure-machine-learning
7
7
ms.subservice: inferencing
@@ -27,7 +27,7 @@ Azure Data Factory allows the creation of pipelines that can orchestrate multipl
27
27
## Prerequisites
28
28
29
29
- This example assumes that you have a model correctly deployed as a batch endpoint. Particularly, use the *heart condition classifier* created in the tutorial [Using MLflow models in batch deployments](how-to-mlflow-batch.md).
30
-
- An Azure Data Factory resource created and configured. If you haven't created your data factory yet, follow the steps in [Quickstart: Create a data factory by using the Azure portal](../data-factory/quickstart-create-data-factory-portal.md) to create one.
30
+
- An Azure Data Factory resource created and configured. To create a data factory, follow the steps in [Quickstart: Create a data factory by using the Azure portal](../data-factory/quickstart-create-data-factory-portal.md) to create one.
31
31
- After creating it, browse to the data factory in the Azure portal:
32
32
33
33
:::image type="content" source="~/reusable-content/ce-skilling/azure/media/data-factory/data-factory-home-page.png" alt-text="Screenshot of the home page for the Azure Data Factory, with the Open Azure Data Factory Studio tile.":::
@@ -77,7 +77,7 @@ The pipeline looks as follows:
77
77
78
78
:::image type="content" source="./media/how-to-use-batch-adf/pipeline-diagram-mi.png" alt-text="Diagram that shows th high level structure of the pipeline you're creating.":::
79
79
80
-
It's composed of the following activities:
80
+
The pipeline contains the following activities:
81
81
82
82
-**Run Batch-Endpoint**: It's a Web Activity that uses the batch endpoint URI to invoke it. It passes the input data URI where the data is located and the expected output file.
83
83
-**Wait for job**: It's a loop activity that checks the status of the created job and waits for its completion, either as **Completed** or **Failed**. This activity, in turns, uses the following activities:
@@ -98,7 +98,7 @@ The pipeline requires the following parameters to be configured:
98
98
99
99
:::image type="content" source="./media/how-to-use-batch-adf/pipeline-diagram.png" alt-text="Diagram that shows th high level structure of the pipeline you're creating.":::
100
100
101
-
It's composed of the following activities:
101
+
The pipeline contains the following activities:
102
102
103
103
-**Authorize**: It's a Web Activity that uses the service principal created in [Authenticating against batch endpoints](#authenticating-against-batch-endpoints) to obtain an authorization token. This token is used to invoke the endpoint later.
104
104
-**Run Batch-Endpoint**: It's a Web Activity that uses the batch endpoint URI to invoke it. It passes the input data URI where the data is located and the expected output file.
@@ -134,7 +134,10 @@ To create this pipeline in your existing Azure Data Factory and invoke batch end
134
134
135
135
1. Select **Pipeline** > **Import from pipeline template**
136
136
137
-
1. You're prompted to select a `zip` file. Uses [this file if using managed identities](https://azuremlexampledata.blob.core.windows.net/data/templates/batch-inference/Run-BatchEndpoint-MI.zip) or [this file if using a service principal](https://azuremlexampledata.blob.core.windows.net/data/templates/batch-inference/Run-BatchEndpoint-SP.zip).
137
+
1. Select a *.zip* file.
138
+
139
+
- Use [this file if using managed identities](https://azuremlexampledata.blob.core.windows.net/data/templates/batch-inference/Run-BatchEndpoint-MI.zip).
140
+
- Use [this file if using a service principal](https://azuremlexampledata.blob.core.windows.net/data/templates/batch-inference/Run-BatchEndpoint-SP.zip).
138
141
139
142
1. A preview of the pipeline shows up in the portal. Select **Use this template**.
0 commit comments