
Answer-first summary for fast verification
Answer: No
## Analysis of the Solution The goal is to save the logic of a pipeline in Azure Data Factory when the Save button is unavailable due to validation errors that prevent publishing. ### Why Exporting as ARM Template Does NOT Meet the Goal **1. ARM Template Export Requires Valid Configuration** - Azure Resource Manager templates can only be exported from resources that are in a valid, publishable state. - When validation errors exist in Azure Data Factory, the factory configuration is considered invalid, and ARM template export functionality is typically disabled or unavailable. **2. ARM Templates Capture Deployed State, Not Unpublished Changes** - ARM templates represent the **published** state of Azure resources, not the unpublished changes in the authoring environment. - Since the pipeline cannot be published due to validation errors, the ARM template would not include the unsaved pipeline logic. **3. Validation Errors Block the Export Process** - The validation errors that prevent publishing also prevent the export of a valid ARM template. - Azure Data Factory requires all components to pass validation before they can be included in deployment artifacts like ARM templates. ### Better Alternatives for Saving Pipeline Logic To save the logic of a pipeline with validation errors: - **Fix the validation errors** first, then save and publish normally - **Use Git integration** with Azure Data Factory, which allows saving changes to source control even with validation errors - **Copy the JSON definition** manually from the authoring canvas ### Conclusion Exporting ADF1 as an ARM template does not meet the goal because validation errors prevent both publishing and ARM template export. The solution cannot capture the unsaved pipeline logic when the factory configuration contains validation errors.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
You have an Azure subscription containing an Azure Data Factory named ADF1. You build a complex data pipeline in Azure Data Factory Studio, but the Save button is unavailable due to validation errors that prevent publishing. You need to ensure you can save the pipeline's logic.
Solution: You export ADF1 as an Azure Resource Manager (ARM) template.
Does this solution achieve the goal?
A
Yes
B
No
No comments yet.