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/data-factory/concepts-pipeline-execution-triggers.md
+20-3Lines changed: 20 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,24 @@ A _pipeline run_ in Azure Data Factory and Azure Synapse defines an instance of
23
23
24
24
Pipeline runs are typically instantiated by passing arguments to parameters that you define in the pipeline. You can execute a pipeline either manually or by using a _trigger_. This article provides details about both ways of executing a pipeline.
25
25
26
-
## Manual execution (on-demand)
26
+
## Create triggers with UI
27
+
28
+
To manually trigger a pipeline or configure a new scheduled, tumbling window, storage event, or custom event trigger, select Add trigger at the top of the pipeline editor.
29
+
30
+
:::image type="content" source="media/concepts-pipeline-execution-triggers/manual-trigger.png" alt-text="Shows how to add a new trigger with UI from the pipeline editor.":::
31
+
32
+
If you choose to manually trigger the pipeline, it will execute immediately. Otherwise if you choose New/Edit, you will be prompted with the add triggers window to either choose an existing trigger to edit, or create a new trigger.
33
+
34
+
:::image type="content" source="media/concepts-pipeline-execution-triggers/new-trigger.png" alt-text="Shows the add triggers window highlighting where to create a new trigger.":::
35
+
36
+
You will see the trigger configuration window, allowing you to choose the trigger type.
37
+
38
+
:::image type="content" source="media/concepts-pipeline-execution-triggers/new-trigger-configuration.png" alt-text="Shows the new trigger configuration window with the type dropdown showing the various types of triggers you can create.":::
39
+
40
+
Read more about [scheduled](#schedule-trigger-with-json), [tumbling window](#tumbling-window-trigger), [storage event](#event-based-trigger), and [custom event](#event-based-trigger) triggers below.
41
+
42
+
43
+
## Manual execution (on-demand) with JSON
27
44
28
45
The manual execution of a pipeline is also referred to as _on-demand_ execution.
29
46
@@ -132,7 +149,7 @@ For a complete sample, see [Quickstart: Create a data factory by using the .NET
132
149
> [!NOTE]
133
150
> You can use the .NET SDK to invoke pipelines from Azure Functions, from your web services, and so on.
134
151
135
-
## Trigger execution
152
+
## Trigger execution with JSON
136
153
137
154
Triggers are another way that you can execute a pipeline run. Triggers represent a unit of processing that determines when a pipeline execution needs to be kicked off. Currently, the service supports three types of triggers:
138
155
@@ -170,7 +187,7 @@ Pipelines and triggers have a many-to-many relationship (except for the tumbling
170
187
}
171
188
```
172
189
173
-
## Schedule trigger
190
+
## Schedule trigger with JSON
174
191
A schedule trigger runs pipelines on a wall-clock schedule. This trigger supports periodic and advanced calendar options. For example, the trigger supports intervals like "weekly" or "Monday at 5:00 PM and Thursday at 9:00 PM." The schedule trigger is flexible because the dataset pattern is agnostic, and the trigger doesn't discern between time-series and non-time-series data.
175
192
176
193
For more information about schedule triggers and, for examples, see [Create a trigger that runs a pipeline on a schedule](how-to-create-schedule-trigger.md).
0 commit comments