Skip to content

Commit cea2a38

Browse files
Freshness, in progress.
1 parent 00f2017 commit cea2a38

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

articles/machine-learning/how-to-use-batch-azure-data-factory.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Run batch endpoints from Azure Data Factory"
33
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.
55
services: machine-learning
66
ms.service: azure-machine-learning
77
ms.subservice: inferencing
@@ -27,7 +27,7 @@ Azure Data Factory allows the creation of pipelines that can orchestrate multipl
2727
## Prerequisites
2828

2929
- 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.
3131
- After creating it, browse to the data factory in the Azure portal:
3232

3333
:::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:
7777

7878
:::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.":::
7979

80-
It's composed of the following activities:
80+
The pipeline contains the following activities:
8181

8282
- **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.
8383
- **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:
9898

9999
:::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.":::
100100

101-
It's composed of the following activities:
101+
The pipeline contains the following activities:
102102

103103
- **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.
104104
- **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
134134

135135
1. Select **Pipeline** > **Import from pipeline template**
136136

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).
138141

139142
1. A preview of the pipeline shows up in the portal. Select **Use this template**.
140143

0 commit comments

Comments
 (0)