This extension to Azure DevOps has three tasks and only one goal: deploy Azure Data Factory (v2) seamlessly and reliable at minimum efforts.
As opposed to ARM template publishing from 'adf_publish' branch, this task publishes ADF directly from JSON files, who represent all ADF artefacts.
The task based on the PowerShell module azure.datafactory.tools available through PSGallery.
Fully written in PowerShell, compatible with Windows PowerShell 5.1, PowerShell Core 6.0 and above.
- Build Azure Data Factory code - Validates all JSON files of ADF (v2) (adftools)
- Publish Azure Data Factory - Deploys entire ADF (v2) from JSON files to ADF instance
- Test connection of ADF Linked Service - Runs test connection of Linked Service of ADF (v2)
Bear in mind that these tasks works only for Azure Data Factory v2.
For classic pipelines, you will find the Tasks available under the Deploy tab, or search for adftools:
You can also use the tasks in a pipeline configured with a yml file, the three tasks are called SQLPlayer.DataFactoryTools.BuildADF.BuildADFTask
, SQLPlayer.DataFactoryTools.PublishADF.PublishADFTask
and SQLPlayer.DataFactoryTools.TestADFLS.TestAdfLinkedServiceTask
.
You can also use the DevOps UI to configure these tasks and then view the generated yml, to ensure the yml is correct.
One example, in which we use the 'Build ADF' task:
- job: 'build_adf'
displayName: 'Build Azure Data Factory'
pool:
vmImage: 'windows-latest'
steps:
- task: SQLPlayer.DataFactoryTools.BuildADF.BuildADFTask@1
displayName: 'Validate ADF files'
inputs:
DataFactoryCodePath: '$(System.DefaultWorkingDirectory)/data-factory'
Action: Build
Use this task to deploy a folder of ADF objects from your repo to target Azure Data Factory instance.
For YAML pipelines, use task PublishADFTask@1
.
- Creation of Azure Data Factory, if not exist (option)
- Deployment of all type of objects: pipelines, datasets, linked services, data flows, triggers, integration runtimes, credentials
- Copes with dependencies (multiple levels) between objects when deploying (no more worrying about object names)
- Build-in mechanism to replace the properties with the indicated values (CSV or JSON file)
- Update, add or remove any property of ADF artefact
- Selective deployment declared in-line or by pointed file
- Stop/start triggers (option)
- Dropping objects when not exist in the source (code) (option)
- Filtering (include or exclude) objects to be deployed by name and/or type and/or type
- Filtering supports wildcards
- Publish options allow you to control:
- Whether stop and restarting triggers
- Whether delete or not objects not in the source
- Whether create or not a new instance of ADF if it not exist
- Tokenisation in config file allows replace any value by Environment Variable or Variable from DevOps Pipeline
- Global Parameters
- Export ARM Templates from JSON files (new!)
- Support for Managed VNET and Managed Private Endpoint (new!)
- ⭐️ Incremental deployment (NEW!)
- Build function to support validation of files, dependencies and config
- Test connections (Linked Services)
For more details, please go to documentation of azure.datafactory.tools.
Parameter label | Parameter name (for YAML task) | Description |
---|---|---|
Azure Subscription | azureSubscription |
Azure subscription to target for deployment |
Resource Group Name | ResourceGroupName |
Provide the name of the Resource Group |
Target Azure Data Factory Name | DataFactoryName |
Provide the name of the target Azure Data Factory |
Azure Data Factory Path | DataFactoryCodePath |
Path from the repo root to the ADF folder which should contains sub-folders like 'pipeline', 'dataset', etc. |
Target Region | Location |
Azure Region of target Data Factory. Required, but used only when creating a new instance of ADF |
Environment Config Type | StageType |
Specifies how you would provide set of parameters for Stage. |
Environment (stage) | StageCode |
Allows pointing configuration with values for all properties who need to be replaced. If parameter is specified, a CSV file named './deployment/config-{stage}.csv' must exist in repo. |
Environment (stage) Config File Path | StageConfigFile |
Allows pointing configuration with values for all properties who need to be replaced. If specified, CSV config file name must ends with '.csv' |
Delete objects not in source | DeleteNotInSource |
Indicates whether the deployment process should remove objects not existing in the source (code) |
Stop/Start triggers | StopStartTriggers |
Indicates whether to stop the triggers before beginning deployment and start them afterwards |
Create new ADF instance | CreateNewInstance |
Indicates whether to create a new ADF if target instance doesn't exist yet. |
Filtering Type | FilteringType |
Type of filtering ADF objects: File Path or Inline Text Field |
Include/Exclude Filtering Text | FilterText |
Multi-line or comma-separated list of objects to be included or excluded in the deployment. For example, see below. |
Include/Exclude Filtering File Path | FilterTextFile |
Multi-line or comma-separated list of objects to be included/excluded in/from the deployment. For example, see below. |
Do not Stop/Start excluded triggers | DoNotStopStartExcludedTriggers |
Specifies whether excluded triggers will be stopped before deployment. |
Do not delete excluded objects | DoNotDeleteExcludedObjects |
Specifies whether excluded objects can be removed. Applies when DeleteNotInSource is set to True only. |
Ignore lack of referenced object | IgnoreLackOfReferencedObject |
Usually, the deployment will fail if a resource is referenced that's not present in a JSON file. Set to True to warn instead of failing. |
Optional parameter. When defined, process will replace all properties defined in (csv) configuration file.
The parameter can be either full path to csv file (must ends with .csv) or just stage name.
When you provide parameter value 'UAT' the process will try open config file located in .\deployment\config-UAT.csv
More details: Step: Replacing all properties environment-related
The task allows you to deploy subset of ADF's objects.
You can select objects specifying them by object's type, name or folder which belongs to, using include or exclude option.
All 3 parts (Type
, Name
, Folder
) can be wildcarded, so all such variants are possible:
You can specify them by exact name or wildcard.
Example:
+pipeline.PL_Copy*
+dataset.ds_srcCopy
dataset.*
-pipeline.PL_DoNotPublish*
-integrationruntime.*
-*.*@testFolder
To simplify user experience – only one field is exposed in order to define include/exclude rules. Therefore, an extra character should be provided before the name/pattern:
+
(plus) - for objects you want to include to a deployment-
(minus) - for objects you want to exclude from a deployment
If char (+/-) is not provided – an inclusion rule would be applied.
Read more: Selective deployment, triggers and logic
Another very helpful task is Build Azure Data Factory
.
The task has two actions to be chosen:
Use this action to validate the code of your Azure Data Factory before you publish it onto target ADF service. The function validates files of ADF in a given location, returning warnings or errors. This validation functionality is implemented in this task, so it is not the same implementation as behind the 'Validate all' button in the ADF UI. The following validation will be performed:
- Reads all files and validates its json format
- Checks whether all dependant objects exist
- Checks whether file name equals object name
- Validate configuration file(s) and its paths
The task sets these 2 pipeline output variables:
- AdfBuildTaskErrors
- AdfBuildTaskWarnings These variables will contain the number of errors or warnings found.
You can use them in any subsequent tasks as any other DevOps variables: $(AdfBuildTaskErrors)
This action uses ADFUtilities NPM package provided by Microsoft. It does exactly the same actions as you can do with ADF UI by clicking Validate all and then Export ARM Template. Therefore, this is a different implementation as the other action described above. So finally, you can automate this step and fully automate ADF deployment, even if you prefer to use Microsoft's approach with ARM Template.
DataFactoryCodePath
- Source folder where all ADF objects are kept. The folder should contain subfolders like pipeline, linkedservice, etc.Action
- One of two actions to be executed:Build only (simple validate)
(Build
for in YAML task) - Validates files integrity. No outcome files.Validate & Export ARM Template
(Export
for in YAML task) - Validates files and export ARM Template files like ADF UI does. ARM Template files as the result. It uses ADFUtilities NPM package provided by Microsoft.
After deployment within automated CI/CD process, we would like to test foundamental Linked Services whom are used for dependant objects in ADF. In order to ensure the entire workload works, we must make sure that all Linked Services are configured correctly and have access to pointing resources.
The purpose of this task is to ensure such checking. It works exactly the same as hitting button Check connection
in ADF Linked Service.
Be aware that the task uses undocumented API function.
Credits: This task arose thanks to Simon D'Morias based on his blog post.
These tasks include the following modules:
- 06 Nov 2024 - v.2.1 - Incremental state is no longer save into Global Parameter of ADF, but now it's store in provided Storage Account #374
- 14 Jun 2024 - v.2.0 - Related Az.* modules must be installed on DevOps Agent (no longer belongs to tasks)
- Support for Service Connection using Workload Identity Federation Authentication in Azure DevOps (#154)
- Test Connection Task is no longer Preview. ClientID & Secret fields are optional for SPN auth.
- 13 Jun 2024 - v.1.35
- 06 Jun 2024 - v.1.33 Update adftools v.1.9.0
- 27 Jan 2024 - v.1.32 - Added dry run option (advanced). Thanks @LiquoriChris!
- 12 Sep 2023 - v.1.31 Update adftools v.1.8.0:
- Fixed: Incremental re-deployment of deleted and recreated objects - Fixed: Deployment of Global Parameters might not work sometimes - 17 Jul 2023 - v.1.30 Update adftools v.1.6.3:
- Stop and restart only changed triggers
- New option to Stop/Start only the triggers that are already Started
- Remove pipeline's from check (Test-AdfCode
) for dashes in name
- Test-AdfLinkedService - minor enhancements
- Fixed:RootFolder
must be absolute otherwise temp files cannot be written
- Fixed: Catch InvalidOperation exception when reading empty FilterFilePath in New-AdfPublishOption.ps1
- Fixed: Purview configuration gets overwritten when deploy Global Parameters using ADF deployment task
- Fixed: Incremental Deployment seems to not work when factory folder does not exist
- Fixed: The publish cmdlet tries to delete enabled (active) trigger (not in source) when TriggerStartMethod = KeepPreviousState
- Fixed: deletion of credential type of objects
- Fixed:Test-AdfCode
for [credential] objects - 16 May 2023 - v.1.29 Upgrade of Az modules (issue #137)
- 12 May 2023 - v.1.28 Update adftools v.1.4:
- Major improvement: Incremental deployment
- More precise error message when value in config is empty
- Support for credentials deployment & delete - 27 Feb 2023 - v.1.27 Update adftools v.1.3
- 24 Feb 2023 - v.1.26 Fixed two bugs when validate ADF code - adftools v.1.2
- 23 Feb 2023 - v.1.25 Added Support for new SynapseNotebook activity #121
- 03 Jan 2023 - v.1.24 Bugfix #118: Az.Accounts updated to ver. 2.10.4
- 02 Jan 2023 - v.1.23 #adftools updated to ver.1.0 & renamed the brand: AzurePlayer. Please note that Publisher ID remains the same (SQLPlayer).
- 03 Dec 2022 - v.1.15 Updated Az.* &
azure.datafactory.tools
modules to the latest versions (see above) - 11 Aug 2022 - v.1.14 Bug [#100]: Updated Az modules to the latest
- 08 Aug 2022 - v.1.13 Fixed bug #95: BuildADFTask action Export encounters errors, but still succeeds
- 15 May 2022 - v.1.12 - Added a few fields to 'Export Arm Template' task - New task: ADF Deployment from ARM Template files - Tools updated to ver.0.97 (changeslog)
- 07 Dec 2021 - v.1.11 Updated to ver.0.95.1 in order to fix a few issues, including: #171.
- 24 Oct 2021 - v.1.10 Added: Build task sets 2 pipeline output variables: AdfBuildTaskErrors & AdfBuildTaskWarnings
- 01 Oct 2021 - v.1.9 Fixed #147: Pipeline could be broken when contains array with 1 item in JSON file and any property was updated
- 29 Sep 2021 - v.1.8 Added ADF config path to build task
- 28 Sep 2021 - v.1.7 Updated main module to ver. 0.91 with the following features:
- Added retry action on failure of starting triggers
- Build task validates config files
- Support for ADF Managed Virtual Network & Managed Private Endpoint (preview), including its configuration
- Config: Added option to index into arrays by element name
- Removing excluded ADF objects when option $DoNotDeleteExcludedObjects = $false
- Changed method of discovering referenced objects (Get-ReferencedObjects)
- Fixed minor issues (all details) - 21 Apr 2021 - v.1.6 Build task fails when any error is found (#36)
- 14 Mar 2021 - v.1.5 Build task can validate and export ARM Template from source code (JSON files)
- 10 Feb 2021 - v.1.4 Added new task: TestAdfLinkedServiceTask (preview)
- 20 Jan 2021 - v.1.2 Fixed: JSON file corrupted when contained object is located deeper than 15 nodes
- 14 Jan 2021 - v.1.1 New task: Build/Test Azure Data Factory Code
- 10 Jan 2021 - v.1.0 New publish flag:
DoNotDeleteExcludedObjects
New publish flag:DoNotStopStartExcludedTriggers
- 23 Dec 2020 - v.0.90 PUBLIC Release:
Support wildcard when specifying object(s) name in config file
Added object name to the msg before action
Exit publish cmd when ADF name is already in use
Allow selecting objects in given folder (#14)
Fixed: Finding dependencies miss objects when the same object names occurs
Fixed: DeleteNotInSource fails when attempting to remove active trigger or found many dependant objects - 08 Dec 2020 - v.0.11 Fixed: JSON file could be corrupted when config update has happened on a very deep path Fixed: Special characters deployed wrong
- 06 Dec 2020 - v.0.10 Fixed: File Path Filtering Type not working
- 19 Nov 2020 - v.0.9 Fixed check which hasn't allowed passing config file in json format
- 10 Sep 2020 - v.0.8 Fixed issue with deployment when no global parameters
- 09 Sep 2020 - v.0.7 Support of Global Parameters
- 09 Aug 2020 - v.0.6 Added Environment Variables mapping (Advanced) & Publish Method to be chosen
- 04 Aug 2020 - v.0.5 Fix bug #3: Add module Az.Resources + upgrade other Az.*
- 26 Jul 2020 - v.0.4 Upgrade all related modules (new features)
- 06 Jun 2020 - v.0.3 Upgrade module azure.datafactory.tools to ver.0.10 (a few bug fixes)
- 27 May 2020 - v.0.2 Enhanced few things. First Public Preview release.
- 15 May 2020 - v.0.1 The first Private Preview release.