You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-scale.md
+7-3
Original file line number
Diff line number
Diff line change
@@ -134,6 +134,10 @@ The unit of scale for Azure Functions is the function app. When the function app
134
134
135
135

136
136
137
+
### Cold Start
138
+
139
+
After your function app has been idle for a number of minutes, the platform may scale the number of instances on which your app runs down to zero. The next request has the added latency of scaling from zero to one. This latency is referred to as a _cold start_. The number of dependencies that must be loaded by your function app can impact the cold start time. Cold start is more of an issue for synchronous operations, such as HTTP triggers that must return a response. If cold starts are impacting your functions, consider running in a Premium plan or in a Dedicated plan with Always on enabled.
140
+
137
141
### Understanding scaling behaviors
138
142
139
143
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:
@@ -176,10 +180,10 @@ The following comparison table shows all important aspects to help the decision
176
180
177
181
<sup>1</sup> For specific limits for the various App Service plan options, see the [App Service plan limits](../azure-resource-manager/management/azure-subscription-service-limits.md#app-service-limits).
@@ -203,7 +207,7 @@ The following comparison table shows all important aspects to help the decision
203
207
204
208
<sup>1</sup> For specific limits for the various App Service plan options, see the [App Service plan limits](../azure-resource-manager/management/azure-subscription-service-limits.md#app-service-limits).
0 commit comments