Skip to content

Commit ea75211

Browse files
author
Glenn Gailey
committed
Fixed wrong bullet issue
1 parent 6649391 commit ea75211

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,8 +149,8 @@ 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. Scaling is faster when running in a [Premium plan](#premium-plan).
153-
* For non-HTTP triggers, new instances are allocated, at most, once every 30 seconds.
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).
154154
* 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

0 commit comments

Comments
 (0)