Azure Data Factory - Implement UpSert Using Dataflow Alter Row Transformation

Today, in this article, we will learn how to implement one of the very common scenarios of any application that gets data from an external source in the form of data feeds (ex: .csv, .json, etc.).

Business Scenario

DreamTech company receives the employee’s data feeds from its customers in the form of .csv files. All the customers place the .csv files in a separate Container in a Storage location. The CSV files contain the full dump of all the employees. Every week these files get uploaded to the Storage location. The requirement is to load all the Employee data from the .csv files to the Azure SQL Database. All new Employee entries must be inserted into the Emp table and all existing Employee entries must be updated

Current Solution

As of today, the Data Analyst has to manually place the files and run a program on a server.

Serverless Solution using Azure Data Factory

In this article, we will develop a Serverless way of achieving the goal of loading the data from the .csv files and upserting (either inserts or updates) it into the database without writing any line of code.

Benefits of this solution over legacy methods.

  • Zero Code solution
  • No Infrastructure management
  • Automation scaling
  • Out of the box monitoring solution

Services used.

  • Azure Storage
  • Azure Data Factory
    • Linked Services
    • DataSets
    • DataFlows
    • Activities
      • GetMetaData Activity
      • ForEach Activity
      • DataFlow
        • Alter Row Transformations
      • Azure SQL Database

Solution Architecture

Below is the high-level architecture of the solution.

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Azure Data Factory

Implement UpSert using DataFlow Alter Row Transformation

Steps depicted in the above arch diagram.

  1. Customers upload the employee data into Storage Account (as a Blob)
  2. The files will be extracted by the Azure Data Factory service
  3. Azure Data Factory UpSerts the employee data into an Azure SQL Database table.

Let’s start developing the solution by creating all the prerequisites as shown below,

  • Create an Azure Storage Account
  • Create a Data Factory Service
  • Create an Azure SQL Database

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

ResourceGroup

Let’s now upload the employee data in the form of a .csv file to a Storage Container as shown below.

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Let’s create a new table in the SQL Database for storing the Employee information. Feel free to use the below script to create the Emp table.

CREATE TABLE dbo.EMP
(
Id varchar(100) NOT NULL,
Prefix varchar(255),
FirstName varchar(255),
MiddleInitial varchar(255),
LastName varchar(255),
Gender varchar(255),
EMail varchar(255),
FatherName varchar(255),
MotherName varchar(255),
MothersMaidenName varchar(255),
DateofBirth Date,
Age decimal,
Weight int,
Custid varchar(100)
)
GO
CREATE CLUSTERED INDEX IX_emp_ID ON dbo.emp (Id);

Let’s start authoring the Azure Data Factory pipeline and also create all the required Azure Data Factory components.

Navigate to the Azure ADF portal by clicking on the Author & Monitor button in the Overview blade of Azure Data Factory Service.

On the Let’s get Started page of the Azure Data Factory website, click on Create a pipeline button to create the pipeline. Before we start authoring the pipeline, we need to create the Linked Services for the following using the Azure Data Factory Management Hub section.

  • Storage
  • Azure SQL Database

As shown below, I have created the two Linked Services.

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Let’s now create the Datasets for source and destination as shown below.

Source Dataset

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Sink Dataset

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Author the Azure Data Factory Pipeline

Let’s start authoring the ADF pipeline. The first step is to connect to the Storage account and retrieve all the Files available in the selected Blob Container Service.

Let’s use the Get MetaData activity by searching for “meta” and drag & drop the activity into the ADF canvas as shown below.

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

As shown in the above screen capture, while the Get Metadata activity is selected, click on the Dataset tab and then choose the Employee_DS_FTP dataset and then click on the +New button.

When you click on the +New button it shows up a drop-down where you can select what kind of Metadata you would like to retrieve from the Source Dataset. As shown in the below screenshot, select Child Items in the dropdown of the Field list

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Note
In case you don’t see the Child Items option in the Field List dropdown, then you would have selected a file while creating the Dataset. Make sure you don’t select any file for the Dataset.

Test the Get Metadata activity

Before we move forward, let’s test the Get Metadata activity by clicking on the Debug button which (after a few seconds) opens up a new Output tab along with the status of the Debug activity as shown below.

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

As shown in the above screenshot, the Debug operation succeeded. Let’s click on the Output button (you will see this only when you hover the mouse icon) to view the output of this Get Metadata activity as shown below in the form of the JSON format.

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

As you can see in the above screenshot, there are two .csv files that are read from the Storage Container.

Our first activity Get Metadata is able to read the files from the Storage Container as expected. Now that we got the list of the input file, we need to enumerate and process them one by one. In order to enumerate the list of items, we need to use another activity called ForEach activity. Let’s do that now.

Authoring ForEach Activity to enumerate the Files from the source.

Let’s create the ForEach activity by searching for it and Drag & Drop the same into the Pipeline Canvas as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

The ForEach activity expects input from the Get Metadata activity. So, in order to have these two activities communicate with each other, we need to link them. In order to do that, click on the small green box (available at the right-side edge of the Get Metadata box) and drag it and attach the arrow to the ForEach activity as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Once the Get Metadata and ForEach activities are linked, the ForEach activity can receive the inputs from the Get Metadata activity. We can configure the input by having the ForEach activity selected and then in the Setting tab(shown below), click on the Add Dynamic Content link as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

When you click on the Add dynamic content, it opens up a popup where you need to choose the output of the Get Metadata activity as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Once you select the out of the Get Metadata activity, you would see something as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Testing the ForEach Activity

Now, we have two activities that are linked with each other. Unfortunately, it’s not possible to test an empty ForEach activity. So, in order to validate whether we have linked the activities properly, then we have to implement the following steps temporarily.

  1. Create a Pipeline scoped variable.
  2. Inside the ForEach activity, create an Append Variable

You can go through the article Azure Data Factory – Assign values to Pipeline Arrays in ForEach activity using Append Variable to understand how to implement the above two points.

As shown below, the ForEach activity executes based on the number of items that the Get MetaData activity and you can view the names of the files.

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

So far, we have been working on the Control flow activities. Now, we need to start working on building the activities that can work with data processing in such a way that for every employee record in the .csv file, we need to insert the record into the Table if the employee record doesn’t exist already. If the employee record exists already then we need to update the same. Basically, we need to implement the UPSERT functionality using Data Flow activities.

Let’s start authoring the Dataflow activity. The Data Flow activity must process each .csv file individually and update the database table.

Author the Dataflow

Create a new DataFlow by right-clicking on the Data Flows menu item and then click on the New data flow button as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Once you click on the New data flow button, it opens up a new popup where you choose Mapping Data Flow and click the OK button as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Mapping data flows are visually designed data transformations in Azure Data Factory. Data flows allow data engineers to develop graphical data transformation logic without writing code. The resulting data flows are executed as activities within Azure Data Factory pipelines that use scaled-out Apache Spark clusters. Data flow activities can be engaged via existing Data Factory scheduling, control, flow, and monitoring capabilities.

Source: https://docs.microsoft.com/en-us/azure/data-factory/concepts-data-flow-overview

Once you click the Ok button, it opens up an Empty Data Flow canvas (I have named it as Upsert_Dataflow ) as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

The Data Flow will be later embedded into ForEach activity. And, the ForEach activity will pass the name of the file that this Data Flow should take as a parameter and start doing the Data Transformations. So, let’s create a new Data Flow parameter named fileName as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Now, click on the Add Source button which adds a new Source and opens up the property window as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

In the Source Type field, select Dataset, and then in the Dataset field, select the Source dataset (in my case it was Employee_DS_FTP) that we have created.

The next step is to click on the Source Options tab and provide the variable name in the textbox of the Wildcard paths as shown in the below screenshot.

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Now, click on the Projection tab which shows the fields that we have in the .csv file. That’s it, we are done with configuring the Source for the Data Flow.

Add Alter row Transformation

As the data flows through the source, we need to find a way that helps us in performing the upsert. That’s where the Alter Row Transformation helps us. Add a new Transformation by clicking on the small ‘+’ icon as shown below.

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Clicking on the ‘+’ icon in the above step opens up the list of all transformations. Search for Alter and you will see the Alter Row transformation as shown in the below screen.

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Once you select the Alter Row, a new item gets added as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

In the Alter row setting tab, select the Incoming Stream (Source1 in my case) and then configure the Alter Row Transformation policies (in our example it’s just Upsert Policy) as shown in the below screen capture.

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Add and Configure Sink Database

As of this writing, Data Flow – Alter Row Transformation supports only Databases (ex: SQL Database, etc.) and Cosmos DB as the sink options. Let’s add the Sink by clicking on the ‘+’ icon which is immediately next to the Alter Row as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Now, a menu will open up where you need to click on Sink as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

A new item will be added for the Sink as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Now, in the Dataset field, choose the Azure SQL destination dataset as shown in the above screen capture.

Click on the Setting tab and select Allow Upsert (this is Alter Row Transformation policy) check box in the Update Method field and then Id in the Key Columns field as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

We are done with the authoring of the Data Flow as well. The next step is to integrate the DataFlow into the pipeline.

Navigate back to the Pipeline and go to ForEach activity and remove the AppendVariable activity that we have added for testing.

Integrate Dataflow in the Pipeline

Add a new activity named DataFlow into the ForEach activity canvas as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Once you add the activity, navigate to the Parameters section as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Now, we need to pass the value to the fileName variable of the Data Flow. Please follow the below steps to configure the value to the fileName variable.

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Let’s publish the Pipeline to Azure Data Factory service by clicking on the Publish All button as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Once the Publish process is complete, click on the Add Trigger button and then on the Trigger now button as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

You can monitor the progress of the execution by navigating to the Monitor section and click on your pipeline as shown below,

Azure Data Factory – Implement UpSert using Dataflow Alter Row Transformation

Once the execution is complete, navigate to your database and view the data. If this is the first time, you are running the pipeline, then the table Emp would have all the records inserted.

Now, make the following changes to the source data and run the pipeline each time you make the change.

  • Make some changes to the fields of the existing Employees.
  • Add new Employees to the .csv files located in the Storage Account.

You would see both the updates and inserts will be saved to the database.

That’s it. We have learned the following.

  1. Creating an Azure Data Factory pipeline
  2. Creating an ADF – Data Flow
  3. Creating a Data Flow – Alter Row Transformation for upserting the data into Database without writing any line of code.