Skip to content

Commit 9947985

Browse files
authored
Merge pull request #207798 from ssabat/patch-5
Added TSG for global parameter inclusion error
2 parents 7e32401 + eb033ca commit 9947985

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

articles/data-factory/ci-cd-github-troubleshoot-guide.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,15 +156,15 @@ Until recently, the it was only possible to publish a pipeline for deployments b
156156

157157
CI/CD process has been enhanced. The **Automated** publish feature takes, validates, and exports all ARM template features from the UI. It makes the logic consumable via a publicly available npm package [@microsoft/azure-data-factory-utilities](https://www.npmjs.com/package/@microsoft/azure-data-factory-utilities). This method allows you to programmatically trigger these actions instead of having to go to the UI and click a button. This method gives your CI/CD pipelines a **true** continuous integration experience. Follow [CI/CD Publishing Improvements](./continuous-integration-delivery-improvements.md) for details.
158158

159-
### Cannot publish because of 4 MB ARM template limit
159+
### Cannot publish because of 4-MB ARM template limit
160160

161161
#### Issue
162162

163-
You can't deploy because you hit Azure Resource Manager limit of 4 MB total template size. You need a solution to deploy after crossing the limit.
163+
You can't deploy because you hit Azure Resource Manager limit of 4-MB total template size. You need a solution to deploy after crossing the limit.
164164

165165
#### Cause
166166

167-
Azure Resource Manager restricts template size to be 4-MB. Limit the size of your template to 4-MB, and each parameter file to 64 KB. The 4-MB limit applies to the final state of the template after it has been expanded with iterative resource definitions, and values for variables and parameters. But, you have crossed the limit.
167+
Azure Resource Manager restricts template size to be 4 MB. Limit the size of your template to 4 MB, and each parameter file to 64 KB. The 4-MB limit applies to the final state of the template after it has been expanded with iterative resource definitions, and values for variables and parameters. But, you have crossed the limit.
168168

169169
#### Resolution
170170

@@ -178,7 +178,7 @@ While publishing ADF resources, the azure pipeline triggers twice or more instea
178178

179179
#### Cause
180180

181-
Azure DevOps has the 20-MB REST API limit. When the ARM template exceeds this size, ADF internally splits the template file into multiple files with linked templates to solve this issue. As a side effect, this split could result in customer's triggers being run more than once.
181+
Azure DevOps has the 20 MB REST API limit. When the ARM template exceeds this size, ADF internally splits the template file into multiple files with linked templates to solve this issue. As a side effect, this split could result in customer's triggers being run more than once.
182182

183183
#### Resolution
184184

@@ -343,8 +343,18 @@ On publish, ADF fetches every file inside each folder in the collaboration branc
343343
#### Resolution
344344
Delete the PartialTemplates folder and republish. You can delete the temporary files in that folder as well.
345345

346+
### Include global parameters in ARM template option does not work
347+
348+
#### Issue
349+
If you are using old default parameterization template, new way to include global paramaters from **Manage Hub** will not work.
350+
351+
#### Cause
352+
Default parameterization template should include all values from global parameter list.
353+
354+
#### Resolution
355+
Use updated [default parameterization template.](https://docs.microsoft.com/azure/data-factory/continuous-integration-delivery-resource-manager-custom-parameters#default-parameterization-template) as one time migration to new method of including global parameters. This template references to all values in global parameter list.
346356

347-
#### Error code: InvalidTemplate
357+
### Error code: InvalidTemplate
348358

349359
#### Issue
350360
Message says *Unable to parse expression.* The expression passed in the dynamic content of an activity isn't being processed correctly because of a syntax error.

0 commit comments

Comments
 (0)