Skip to content

Commit a1cbebb

Browse files
committed
add a note
1 parent 638ba13 commit a1cbebb

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

articles/machine-learning/how-to-trigger-published-pipeline.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Trigger the run of your Azure Machine Learning Pipeline when new data appears. F
2020

2121
* An Azure Machine Learning workspace. For more information, see [Create an Azure Machine Learning workspace](how-to-manage-workspace.md).
2222

23-
* [A published Machine Learning pipeline](concept-ml-pipelines.md). [Create and publish your pipeline](how-to-create-your-first-pipeline.md). Then find the REST endpoint of your PublishedPipeline by using the pipeline ID:
23+
* The REST endpoint for a published Machine Learning pipeline. [Create and publish your pipeline](how-to-create-your-first-pipeline.md). Then find the REST endpoint of your PublishedPipeline by using the pipeline ID:
2424

2525
```
2626
# You can find the pipeline ID in Azure Machine Learning studio
@@ -29,7 +29,7 @@ Trigger the run of your Azure Machine Learning Pipeline when new data appears. F
2929
published_pipeline.endpoint
3030
```
3131
* [Azure blob storage](../storage/blobs/storage-blobs-overview.md) to store your data.
32-
* [A datastore](how-to-access-data.md) in your workspace that has the details from your blob storage account.
32+
* [A datastore](how-to-access-data.md) in your workspace that contains the details of your blob storage account.
3333
3434
## Create a Logic App
3535
@@ -45,24 +45,26 @@ Now create an [Azure Logic App](../logic-apps/logic-apps-overview.md) instance.
4545
> [!div class="mx-imgBorder"]
4646
> ![Add trigger](media/how-to-trigger-published-pipeline/add-trigger.png)
4747
48-
1. Fill in the connection info for the Blob storage account you wish to monitor for blob additions or modifications. Select the Container to monitor. This trigger will not monitor subfolders of the selected Container.
48+
1. Fill in the connection info for the Blob storage account you wish to monitor for blob additions or modifications. Select the Container to monitor.
4949
5050
Choose the **Interval** and **Frequency** to poll for updates that work for you.
5151
52-
1. Add an HTTP action that will run when a new or modified blob is detected. Select **+ New Step**, then search for and select the HTTP action.
52+
> [!NOTE]
53+
> This trigger will monitor the selected Container but will not monitor subfolders.
54+
55+
1. Add an HTTP action that will run when a new or modified blob is detected. Select **+ New Step**, then search for and select the HTTP action.
5356
5457
> [!div class="mx-imgBorder"]
5558
> ![Search for HTTP action](media/how-to-trigger-published-pipeline/search-http.png)
5659
57-
Use the following settings.
58-
60+
Use the following settings to configure your action:
61+
5962
| Setting | Value |
6063
|---|---|
6164
| HTTP action | POST |
62-
| URI |the endpoint that you found at the beginning of this article |
65+
| URI |the endpoint to the published pipeline that you found as a [Prerequisite](#prerequisites) |
6366
| Authentication mode | Managed Identity |
6467
65-
6668
1. Set up your schedule to set the value of any [DataPath PipelineParameters](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-showcasing-datapath-and-pipelineparameter.ipynb) you may have:
6769
6870
```json
@@ -78,7 +80,7 @@ Now create an [Azure Logic App](../logic-apps/logic-apps-overview.md) instance.
7880
                        },
7981
```
8082
81-
Use the `DataStoreName` you added to your workspace.
83+
Use the `DataStoreName` you added to your workspace as a [Prerequisite](#prerequisites).
8284
8385
> [!div class="mx-imgBorder"]
8486
> ![HTTP settings](media/how-to-trigger-published-pipeline/http-settings.png)

0 commit comments

Comments
 (0)