Login
Remember
Register
Ask a Question
What are the top-level concepts of Azure Data Factory?
0
votes
asked
Jun 12, 2022
in
Azure Data Factory
by
SakshiSharma
What are the top-level concepts of Azure Data Factory?
azure-data-factory
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 12, 2022
by
SakshiSharma
Following is a list of four basic top-level concepts of Azure Data Factory:
Pipeline:
Pipeline is one of the most important top-level concepts of Azure Data Factory. It acts as a carrier in which many processes occur where activity is an individual process.
Activities:
The activities concepts specify the steps of processes in the pipeline. A pipeline can have one or multiple activities. An activity can be anything. For example, a process like querying a data set or moving the dataset from one source to another.
Datasets:
Datasets specify the sources of data. In other words, we can say that a dataset is a data structure that holds our data.
Linked Services:
Linked services are the store information that is very important while connecting to the resources or other services. For example, you must need a connection string connected to an external device if you have an SQL server. Here, you have to mention the source and the destination of your data.
...