Skip to content

Commit cbb7830

Browse files
authored
Update flex-consumption-how-to.md
1 parent c93d046 commit cbb7830

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

articles/azure-functions/flex-consumption-how-to.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,12 @@ You can't currently change the instance memory size setting for your app using V
445445

446446
## Set always ready instance counts
447447

448-
When creating an app in a Flex Consumption plan, you can set the always ready instance count for specific groups (HTTP or Durable triggers) and triggers. For individual functions, use the format `function:<FUNCTION_NAME>=n`.
448+
You can set a number of always ready instances for the [Per-function scaling](flex-consumption-plan.md#per-function-scaling) groups or individual functions, to keep your functions loaded and ready to execute. There are three special groups, as in per-function scaling:
449+
+ `http` - all the HTTP triggered functions in the app are scaled together into their own instances.
450+
+ `durable` - all the Durable triggered functions (Orchestration, Activity, Entity) in the app are scaled together into their own instances. Use `durable` as the name for the name value pair setting.
451+
+ `blob` - all the event grid blob storage triggered functions in the app are scaled together into their own instances. Use `blob` as the name for the name value pair setting.
452+
453+
Use `http`, `durable` or `blob` as the name for the name value pair setting to configure Always Ready counts for these groups. For all othere trigger types you need to configure Always Ready for each individual function using the format `function:<FUNCTION_NAME>=n`.
449454

450455
### [Azure CLI](#tab/azure-cli)
451456

0 commit comments

Comments
 (0)