Skip to content

Commit 50cb3e5

Browse files
authored
Merge pull request #107276 from ggailey777/posey
Clarify customer PR about SB policy
2 parents d0a9432 + ea75211 commit 50cb3e5

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

articles/azure-functions/functions-scale.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,10 @@ The unit of scale for Azure Functions is the function app. When the function app
149149
Scaling can vary on a number of factors, and scale differently based on the trigger and language selected. There are a few intricacies of scaling behaviors to be aware of:
150150

151151
* A single function app only scales out to a maximum of 200 instances. A single instance may process more than one message or request at a time though, so there isn't a set limit on number of concurrent executions.
152-
* For HTTP triggers, new instances will only be allocated at most once every 1 second.
153-
* For non-HTTP triggers, new instances will only be allocated at most once every 30 seconds.
154-
155-
Different triggers may also have different scaling limits as well as documented below:
156-
157-
* [Event Hub](functions-bindings-event-hubs-trigger.md#scaling)
152+
* For HTTP triggers, new instances are allocated, at most, once per second.
153+
* For non-HTTP triggers, new instances are allocated, at most, once every 30 seconds. Scaling is faster when running in a [Premium plan](#premium-plan).
154+
* For Service Bus triggers, use _Manage_ rights on resources for the most efficient scaling. With _Listen_ rights, scaling isn't as accurate because the queue length can't be used to inform scaling decisions. To learn more about setting rights in Service Bus access policies, see [Shared Access Authorization Policy](../service-bus-messaging/service-bus-sas.md#shared-access-authorization-policies).
155+
* For Event Hub triggers, see the [scaling guidance](functions-bindings-event-hubs-trigger.md#scaling) in the reference article.
158156

159157
### Best practices and patterns for scalable apps
160158

0 commit comments

Comments
 (0)