You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/data-factory/ci-cd-github-troubleshoot-guide.md
+15-5Lines changed: 15 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -156,15 +156,15 @@ Until recently, the it was only possible to publish a pipeline for deployments b
156
156
157
157
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.
158
158
159
-
### Cannot publish because of 4MB ARM template limit
159
+
### Cannot publish because of 4-MB ARM template limit
160
160
161
161
#### Issue
162
162
163
-
You can't deploy because you hit Azure Resource Manager limit of 4MB 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.
164
164
165
165
#### Cause
166
166
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 4MB. Limit the size of your template to 4MB, 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.
168
168
169
169
#### Resolution
170
170
@@ -178,7 +178,7 @@ While publishing ADF resources, the azure pipeline triggers twice or more instea
178
178
179
179
#### Cause
180
180
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 20MB 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.
182
182
183
183
#### Resolution
184
184
@@ -343,8 +343,18 @@ On publish, ADF fetches every file inside each folder in the collaboration branc
343
343
#### Resolution
344
344
Delete the PartialTemplates folder and republish. You can delete the temporary files in that folder as well.
345
345
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.
346
356
347
-
####Error code: InvalidTemplate
357
+
### Error code: InvalidTemplate
348
358
349
359
#### Issue
350
360
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