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-pipelines-activities.md
+33-1Lines changed: 33 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,38 @@ Control activity | Description
82
82
[Web Activity](control-flow-web-activity.md) | Web Activity can be used to call a custom REST endpoint from a pipeline. You can pass datasets and linked services to be consumed and accessed by the activity.
83
83
[Webhook Activity](control-flow-webhook-activity.md) | Using the webhook activity, call an endpoint, and pass a callback URL. The pipeline run waits for the callback to be invoked before proceeding to the next activity.
84
84
85
+
## Creating a pipeline with UI
86
+
87
+
# [Azure Data Factory](#tab/data-factory)
88
+
To create a new pipeline, navigate to the Author tab in Data Factory Studio (represented by the pencil icon), then click the plus sign and choose Pipeline from the menu, and Pipeline again from the submenu.
89
+
90
+
:::image type="content" source="media/concepts-pipelines-activities/create-pipeline-with-ui.png" alt-text="Shows the steps to create a new pipeline using Azure Data Factory Studio.":::
91
+
92
+
Data factory will display the pipeline editor where you can find:
93
+
94
+
1. All activities that can be used within the pipeline.
95
+
1. The pipeline editor canvas, where activities will appear when added to the pipeline.
96
+
1. The pipeline configurations pane, including parameters, variables, general settings, and output.
97
+
1. The pipeline properties pane, where the pipeline name, optional description, and annotations can be configured. This pane will also show any related items to the pipeline within the data factory.
98
+
99
+
:::image type="content" source="media/concepts-pipelines-activities/pipeline-configuration-with-ui.png" alt-text="Shows the pipeline editor pane in Azure Data Factory studio with each of the sections described above highlighted.":::
100
+
101
+
# [Synapse Analytics](#tab/synapse-analytics)
102
+
To create a new pipeline, navigate to the Integrate tab in Synapse Studio (represented by the pipeline icon), then click the plus sign and choose Pipeline from the menu.
103
+
104
+
:::image type="content" source="media/concepts-pipelines-activities/create-pipeline-with-ui-synapse.png" alt-text="Shows the steps to create a new pipeline using Synapse Studio.":::
105
+
106
+
Synapse will display the pipeline editor where you can find:
107
+
108
+
1. All activities that can be used within the pipeline.
109
+
1. The pipeline editor canvas, where activities will appear when added to the pipeline.
110
+
1. The pipeline configurations pane, including parameters, variables, general settings, and output.
111
+
1. The pipeline properties pane, where the pipeline name, optional description, and annotations can be configured. This pane will also show any related items to the pipeline in the Synapse workspace.
112
+
113
+
:::image type="content" source="media/concepts-pipelines-activities/pipeline-configuration-with-ui-synapse.png" alt-text="Shows the pipeline editor pane in Synapse studio with each of the sections described above highlighted.":::
114
+
115
+
---
116
+
85
117
## Pipeline JSON
86
118
Here is how a pipeline is defined in JSON format:
87
119
@@ -149,7 +181,7 @@ policy | Policies that affect the run-time behavior of the activity. This proper
149
181
dependsOn | This property is used to define activity dependencies, and how subsequent activities depend on previous activities. For more information, see [Activity dependency](#activity-dependency) | No
150
182
151
183
### Activity policy
152
-
Policies affect the run-time behavior of an activity, giving configurability options. Activity Policies are only available for execution activities.
184
+
Policies affect the run-time behavior of an activity, giving configuration options. Activity Policies are only available for execution activities.
0 commit comments