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-trigger-published-pipeline.md
+11-9Lines changed: 11 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Trigger the run of your Azure Machine Learning Pipeline when new data appears. F
20
20
21
21
* An Azure Machine Learning workspace. For more information, see [Create an Azure Machine Learning workspace](how-to-manage-workspace.md).
22
22
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:
24
24
25
25
```
26
26
# 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
29
29
published_pipeline.endpoint
30
30
```
31
31
* [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.
33
33
34
34
## Create a Logic App
35
35
@@ -45,24 +45,26 @@ Now create an [Azure Logic App](../logic-apps/logic-apps-overview.md) instance.
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.
49
49
50
50
Choose the **Interval** and **Frequency** to poll for updates that work for you.
51
51
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.
53
56
54
57
> [!div class="mx-imgBorder"]
55
58
> 
56
59
57
-
Use the following settings.
58
-
60
+
Use the following settings to configure your action:
61
+
59
62
| Setting | Value |
60
63
|---|---|
61
64
| 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) |
63
66
| Authentication mode | Managed Identity |
64
67
65
-
66
68
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:
67
69
68
70
```json
@@ -78,7 +80,7 @@ Now create an [Azure Logic App](../logic-apps/logic-apps-overview.md) instance.
78
80
},
79
81
```
80
82
81
-
Use the `DataStoreName` you added to your workspace.
83
+
Use the `DataStoreName` you added to your workspace as a [Prerequisite](#prerequisites).
0 commit comments