Skip to content

Commit 6649391

Browse files
author
Glenn Gailey
committed
review feedback
1 parent f294283 commit 6649391

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-functions/functions-scale.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ 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 are allocated, at most, once per second.
152+
* For HTTP triggers, new instances are allocated, at most, once per second. Scaling is faster when running in a [Premium plan](#premium-plan).
153153
* For non-HTTP triggers, new instances are allocated, at most, once every 30 seconds.
154-
* For Service Bus triggers, use _Manage_ rights on resources for the most efficient scaling. With _Listen_ rights, scaling won't be as accurate. 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).
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).
155155
* For Event Hub triggers, see the [scaling guidance](functions-bindings-event-hubs-trigger.md#scaling) in the reference article.
156156

157157
### Best practices and patterns for scalable apps

0 commit comments

Comments
 (0)