All Projects → gbrueckl → Azure.DataFactory.LocalEnvironment

gbrueckl / Azure.DataFactory.LocalEnvironment

Licence: MIT license
This code allows you to load any existing Azure Data Factory project file (*.dfproj) and perform further actions like "Export to ARM Template" or to debug custom C# activities

Programming Languages

C#
18002 projects
powershell
5483 projects
Batchfile
5799 projects

Projects that are alternatives of or similar to Azure.DataFactory.LocalEnvironment

ADF BigQuery
How to authenticate to Google Big Query when connecting from Azure Data Factory v2
Stars: ✭ 22 (-12%)
Mutual labels:  adf, azure-data-factory
azure.policy
Sample ARM and Bicep templates for Azure policy and policy initiative definitions
Stars: ✭ 29 (+16%)
Mutual labels:  arm-templates
Engine-Tune-Repository-TunerPro-EFIlive-TunerCat
Repository for Engine Tune information
Stars: ✭ 30 (+20%)
Mutual labels:  adf
redux-react-boilerplate-2018
Redux enabled boilerplate for React, react-bootstrap, babel and webpack ready for 2018
Stars: ✭ 12 (-52%)
Mutual labels:  adf
Azure-Certification-DP-200
Road to Azure Data Engineer Part-I: DP-200 - Implementing an Azure Data Solution
Stars: ✭ 54 (+116%)
Mutual labels:  azure-data-factory
AzureContainerInstancesManagement
Hosting game servers at scale using Azure Container Instances, using Azure Functions and Event Grid. Demo with OpenArena game server!
Stars: ✭ 41 (+64%)
Mutual labels:  arm-templates
runiac
Run IaC Anywhere With Ease
Stars: ✭ 18 (-28%)
Mutual labels:  arm-templates
azure-event-driven-data-pipeline
Building event-driven data ingestion pipelines in Azure
Stars: ✭ 13 (-48%)
Mutual labels:  arm-templates
armkit
Define infrastructure resources using programming constructs and provision them using Azure ARM templates
Stars: ✭ 50 (+100%)
Mutual labels:  arm-templates
sitecore-azure-devops
Sitecore 8.2u5 DevOps Scripts
Stars: ✭ 15 (-40%)
Mutual labels:  arm-templates
Azure Quickstart Templates
Azure Quickstart Templates
Stars: ✭ 11,138 (+44452%)
Mutual labels:  arm-templates
PSBicep
This is the repo for the Bicep PowerShell Module.
Stars: ✭ 67 (+168%)
Mutual labels:  arm-templates
azure-arm
My ARM template library
Stars: ✭ 15 (-40%)
Mutual labels:  arm-templates
adf-samples
Various code samples published by Oracle relating to the Oracle Application Development Framework (ADF)
Stars: ✭ 35 (+40%)
Mutual labels:  adf
MCW-Big-data-analytics-and-visualization
MCW Big data analytics and visualization
Stars: ✭ 172 (+588%)
Mutual labels:  azure-data-factory
automating-azure-analysis-services
Code samples for a SQL Saturday presentation on the topic of Automating Azure Analysis Services
Stars: ✭ 53 (+112%)
Mutual labels:  azure-data-factory
vsts-publish-adf
This extension adds Azure Data Factory release tasks to Azure Pipelines.
Stars: ✭ 23 (-8%)
Mutual labels:  azure-data-factory
AzureDataFactoryHOL
Azure Data Factory Hands On Lab - Step by Step - A Comprehensive Azure Data Factory and Mapping Data Flow step by step tutorial
Stars: ✭ 43 (+72%)
Mutual labels:  azure-data-factory

Azure.DataFactory.LocalEnvironment

This repository provides some tools which make it easier to work with Azure Data Factory (ADF). It mainly contains two features:

  • Debug Custom .Net Activities locally (within VS and without deployment to the ADF Service!)
  • Export existing ADF Visual Studio projects a Azure Resource Manager (ARM) template for deployment

In addition, the repository also contains various samples to demonstrate how to work with the ADF Local Environment.

Update 2018-11-23:

Update 2017-03-02:

  • added support for some of the built-in ADF Date/Time functions
  • you are now able to debug multiple activties in the same run
  • temporary fix so no exception is thrown during clean-up of the temporary files after debugging
  • fix to overwrite all settings defined in the config-file (not just the ones with a value of "<config>")
  • config files now also support nested JSON as values to overwrite whole JSON subtrees

Setup

The package can now be downloaded from the NuGet gallery: https://www.nuget.org/packages/gbrueckl.Azure.DataFactory.LocalEnvironment

If you install it from within Visual Studio, simply search for "gbrueckl":

Alt text Alt text

Alternatively you can also use the NuGet package manager console and run

Install-Package gbrueckl.Azure.DataFactory.LocalEnvironment

Alt text

Further details can also be found here: https://docs.microsoft.com/en-us/nuget/consume-packages/ways-to-install-a-package

Debug Custom .Net Activities

To set everything up, it is recommended to add a new Console Application project to your existing VS solution which already contains the code for the custom activity and also the ADF project itself. Other setups (e.g. with multiple solutions/projects) would also work but make it much harder to develop and debug your custom code. Once you have added your Console Application, you need to add the NuGet package "gbrueckl.Azure.DataFactory.LocalEnvironment" - see [Setup] above.

Next step is to add the namespace of the ADFLocalEnvironment to your code so you can start start using the ADFLocalEnvironment class. Using an existing ADF Project Visual Studio File (*.dfproj) and an optional name for an ADF Configuration to use you can create a new intance of the ADFLocalEnvironment. The configuration file also has to be part of the ADF project referenced in the first parameter! Then you can simply call ExecuteActivity-function and pass in the mandatory parameters:

  • Name of the Pipeline
  • Name of the Activity
  • SliceStart
  • SliceEnd
  • A Custom ActivityLogger (optional) Alt text

Now you can simply add breakpoints to your custom activity's code, execute the Console Application and the debugger will jump in once your breakpoint is reached: Alt text

Export to ARM Template

A very common requirement when it comes to ADF deployment is to integrate it with regular ARM deployments. Unfortunatelly, at the time being, Microsoft does not offer a native way to convert an ADF project into a deployable ARM template. However, ADFLocalEnvironment class allows you to do exactly this. The first steps to setup everything are very similar to the steps described above but instead of calling the ExecuteActivity-function, we now call the ExportARMTemplate-function which supports the following parameters:

  • Path to an existing ARM Deployment project file (*.deployproj)
  • An Azure region where the ADF should be deployed to (optional, default is the location of the ResourceGroup)
  • Whether all PipeLines should be paused or not (optional, default is False) Alt text

The ExportARMTemplate-function will then process the following steps:

  • Generate a file called "AzureDataFactory.json" in the root folder of the ARM project
  • Generate a file called "AzureDataFactory.parameters.json" in the root folder of the ARM project
  • Copy all dependencies defined in the ADF project to the root folder of the ARM project using the following structure \ADF_Dependencies\gbdomaindata\adfcontainer\package\

Those newly copied/created have to be added to the ARM project manually once. First we need to active "Show Hidden Items" at the level of our ARM project: Alt text And then we can include the necessary files (see above) in our ARM project: Alt text

For all of our dependencies we also need to change the properties to make sure the dependencies are also copied to the output folder: Alt text

If your project actually contains dependencies, you also need to modify the PowerShell script that comes with the ARM project (\MyARMTemplate/Deploy-AzureResourceGroup.ps1) and add the lines of code generated by the GetARMPostDeploymentScript-function: Alt text

Now you can deploy your ADF project just like any other regular ARM template: Alt text

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].