gbrueckl.Azure.DataFactory.LocalEnvironment 0.9.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package gbrueckl.Azure.DataFactory.LocalEnvironment --version 0.9.0
NuGet\Install-Package gbrueckl.Azure.DataFactory.LocalEnvironment -Version 0.9.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="gbrueckl.Azure.DataFactory.LocalEnvironment" Version="0.9.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add gbrueckl.Azure.DataFactory.LocalEnvironment --version 0.9.0
#r "nuget: gbrueckl.Azure.DataFactory.LocalEnvironment, 0.9.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install gbrueckl.Azure.DataFactory.LocalEnvironment as a Cake Addin
#addin nuget:?package=gbrueckl.Azure.DataFactory.LocalEnvironment&version=0.9.0

// Install gbrueckl.Azure.DataFactory.LocalEnvironment as a Cake Tool
#tool nuget:?package=gbrueckl.Azure.DataFactory.LocalEnvironment&version=0.9.0

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/0.9.0 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

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.9.2 3,506 5/5/2019
0.9.0 1,445 11/23/2018

Fixed documentation