Skip to content

Commit 8938fef

Browse files
author
ecfan
committed
Remove target-based scaling
1 parent a296fde commit 8938fef

File tree

1 file changed

+0
-88
lines changed

1 file changed

+0
-88
lines changed

articles/logic-apps/edit-app-settings-host-settings.md

Lines changed: 0 additions & 88 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ App settings in Azure Logic Apps work similarly to app settings in Azure Functio
6262
| `ServiceProviders.Sftp.SftpConnectionPoolSize` | `2` connections | Sets the number of connections that each processor can cache. The total number of connections that you can cache is *ProcessorCount* multiplied by the setting value. |
6363
| `ServiceProviders.MaximumAllowedTriggerStateSizeInKB` | `10` KB, which is ~1,000 files | Sets the trigger state entity size in kilobytes, which is proportional to the number of files in the monitored folder and is used to detect files. If the number of files exceeds 1,000, increase this value. |
6464
| `ServiceProviders.Sql.QueryTimeout` | `00:02:00` <br>(2 min) | Sets the request timeout value for SQL service provider operations. |
65-
| `TARGET_BASED_SCALING_ENABLED` | `1` | Sets Azure Logic Apps to use target-based scaling (`1`) or incremental scaling (`0`). By default, target-based scaling is automatically enabled. For more information see [Target-based scaling](#scaling). |
6665
| `WEBSITE_LOAD_ROOT_CERTIFICATES` | None | Sets the thumbprints for the root certificates to be trusted. |
6766
| `Workflows.Connection.AuthenticationAudience` | None | Sets the audience for authenticating a managed (Azure-hosted) connection. |
6867
| `Workflows.CustomHostName` | None | Sets the host name to use for workflow and input-output URLs, for example, "logic.contoso.com". For information to configure a custom DNS name, see [Map an existing custom DNS name to Azure App Service](../app-service/app-service-web-tutorial-custom-domain.md) and [Secure a custom DNS name with a TLS/SSL binding in Azure App Service](../app-service/configure-ssl-bindings.md). |
@@ -184,93 +183,6 @@ The following example shows the syntax for these settings where each workflow ID
184183
"Jobs.SuspendedJobPartitionPrefixes": "<workflow-ID-1>:; <workflow-ID-2>:"
185184
```
186185

187-
<a name="scaling"></a>
188-
189-
### Target-based scaling
190-
191-
Single-tenant Azure Logic Apps gives you the option to select your preferred compute resources and set up your logic app resources to dynamically scale based on varying workload demands. The target-based scaling model used by Azure Logic Apps includes settings that you can use to fine-tune the model's underlying dynamic scaling mechanism, which can result in faster scale-out and scale-in times. For more information about the target-based scaling model, see [Target-based scaling for Standard workflows in single-tenant Azure Logic Apps](target-based-scaling-standard.md).
192-
193-
#### Considerations
194-
195-
- Target-based scaling isn't available or supported for Standard workflows running on an App Service Environment or Consumption plan.
196-
197-
- If you have scale-in requests without any scale-out requests, Azure Logic Apps uses the maximum scale-in value. Target-based scaling can scale down unused worker instances faster, resulting in more efficient resource usage.
198-
199-
#### Requirements
200-
201-
- Your logic apps must use [Azure Functions runtime version 4.3.0 or later](../azure-functions/set-runtime-version.md).
202-
203-
- Your logic app workflows must use single-tenant Azure Logic Apps runtime version 1.55.1 or later.
204-
205-
#### Target-based scaling settings in host.json
206-
207-
| Setting | Default value | Description |
208-
|---------|---------------|-------------|
209-
| `Runtime.TargetScaler.TargetConcurrency` | `null` | The number of target executions per worker instance. By default, the value is `null`. If you leave this value unchanged, your logic app defaults to using dynamic concurrency. You can set a targeted maximum value for concurrent job polling by using this setting. For an example, see the section following this table. |
210-
| `Runtime.TargetScaler.TargetScalingCPU` | `70` | The maximum percentage of CPU usage that you expect at target concurrency. You can change this default percentage for each logic app by using this setting. For an example, see the section following this table. |
211-
| `Runtime.TargetScaler.TargetScalingFactor` | `0.3` | A numerical value from `0.05` to `1.0` that determines the degree of scaling intensity. A higher target scaling factor results in more aggressive scaling. A lower target scaling factor results in more conservative scaling. You can fine-tune the target scaling factor for each logic app by using this setting. For an example, see the section following this table. |
212-
213-
##### TargetConcurrency example
214-
215-
```json
216-
{
217-
"version": "2.0",
218-
"extensionBundle": {
219-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Workflows",
220-
"version": "[1.*, 2.0.0)"
221-
},
222-
"extensions": {
223-
"workflow": {
224-
"Settings": {
225-
"Runtime.TargetScaler.TargetConcurrency": "280"
226-
}
227-
}
228-
}
229-
}
230-
```
231-
232-
#### TargetScalingCPU example
233-
234-
```json
235-
{
236-
"version": "2.0",
237-
"extensionBundle": {
238-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Workflows",
239-
"version": "[1.*, 2.0.0)"
240-
},
241-
"extensions": {
242-
"workflow": {
243-
"Settings": {
244-
"Runtime.TargetScaler.TargetScalingCPU": "76"
245-
}
246-
}
247-
}
248-
}
249-
```
250-
251-
##### TargetScalingFactor example
252-
253-
```json
254-
{
255-
"version": "2.0",
256-
"extensionBundle": {
257-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Workflows",
258-
"version": "[1.*, 2.0.0)"
259-
},
260-
"extensions": {
261-
"workflow": {
262-
"Settings": {
263-
"Runtime.TargetScaler.TargetScalingFactor": "0.62"
264-
}
265-
}
266-
}
267-
}
268-
```
269-
270-
#### Disable target-based scaling
271-
272-
By default, target-based scaling is automatically enabled. To opt out from using target-based scaling and revert back to incremental scaling, add the app setting named **TARGET_BASED_SCALING_ENABLED** and set the value set to **0** in your Standard logic app resource using the Azure portal or in your logic app project's **local.settings.json file** using Visual Studio Code. For more information, see [Manage app settings - local.settings.json](#manage-app-settings).
273-
274186
<a name="recurrence-triggers"></a>
275187

276188
### Recurrence-based triggers

0 commit comments

Comments
 (0)