ADF Mapping Data Flows: Optimize for Azure SQL Database
I’m going to use this blog post as a dynamic list of performance optimizations to consider when using Azure Data Factory’s Mapping Data Flow. I am going to focus this only to Azure SQL DB. I will post...
View ArticleADF Mapping Data Flows: Optimize for Azure SQL Data Warehouse
I’m going to use this blog post as a dynamic list of performance optimizations to consider when using Azure Data Factory’s Mapping Data Flow. I am going to focus this only to Azure SQL DW. I will post...
View ArticleADF Mapping Data Flows: Optimize for File Source and Sink
I’m going to use this blog post as a dynamic list of performance optimizations to consider when using Azure Data Factory’s Mapping Data Flow. I am going to focus this only to files. I will post...
View ArticleDynamic SQL Table Names with Azure Data Factory Data Flows
You can leverage ADF’s parameters feature with Mapping Data Flows to create pipelines that dynamically create new target tables. You can set those table names through Lookups or other activities. I’ve...
View ArticleADF Mapping Data Flows Parameters
Using Azure Data Factory Mapping Data Flows, you can make your data transformations flexible and general-purpose by using parameters. Use Data Flow parameters to create dynamic transformation...
View ArticleETL with ADF: Convert Pig to Data Flows
Here’s a brief posting on taking an ETL script written in Pig. I took an ETL example using Pig from the Hortonworks tutorials site and migrating it to ADF using Mapping Data Flows. It took me...
View ArticleADF Data Flows: Distinct Rows
Below is a method to use in ADF’s Mapping Data Flows to reduce the data stream in your data flows to only include distinct rows. This sample is available as a pipeline template here. Choose your...
View ArticleReduce Execution Time for Data Flow Activities in ADF Pipelines
In ADF Mapping Data Flows, there are 2 working modes: Debug mode and Pipeline mode. Debug mode is active when you turn on the Data Flow debug switch and the light is green, showing debug as active. You...
View ArticleCustom logging and auditing of ADF Data Flows
ADF Data Flows Custom Logging and Auditing Video ADF has a number of built-in capabilities for logging, monitoring, alerting, and auditing your pipelines. There are UI monitoring tools, telemetry logs,...
View ArticleMedian function in Azure Data Factory
To perform a median (middle value of a sorted list), you need to put a couple of transformations together. Below are the steps needed to use median in ADF using data flows. Sort your data by the field...
View Article