Skip to content

Commit 5efefc1

Browse files
authored
Converted to table format
1 parent e5e8bdc commit 5efefc1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

articles/azure-functions/flex-consumption-plan.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,15 @@ Concurrency is a key factor that determines how Flex Consumption function apps s
6464

6565
This _per-function scaling_ behavior is a part of the hosting platform, so you don't need to configure your app or change the code. For more information, see [Per-function scaling](event-driven-scaling.md#per-function-scaling) in the Event-driven scaling article.
6666

67-
In per function scaling, HTTP, Blob (Event Grid), and Durable triggers are special cases. All HTTP triggered functions in the app are grouped and scale together in the same instances, and all Durable triggered functions (Orchestration, Activity, or Entity triggers) are grouped and scale together in the same instances, and all Blob (Event Grid) functions are grouped and scale together in the same instances. All other functions in the app are scaled individually into their own instances.
67+
In per-function scaling, decisions are made for certain function triggers based on group aggregations. This table shows the defined set of functions scale groups:
68+
69+
| Scale group (triggers) | Name |
70+
| ---- | ---- |
71+
| HTTP<br/>SignalR | `http` |
72+
| Blob (event-driven) | `blob`|
73+
| Orchestration<br/>Activity<br/>Entity | `durable` |
74+
75+
All other functions in the app are scaled individually in their own set of instances, which are referenced using the convention `function:<NAMED_FUNCTION>`.
6876

6977
## Always ready instances
7078

0 commit comments

Comments
 (0)