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: pages/serverless-containers/concepts.mdx
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,16 @@ categories:
12
12
- serverless
13
13
---
14
14
15
+
## Autoscaling
16
+
17
+
Autoscaling refers to the ability of Serverless Containers to automatically adjust the number of instances without manual intervention.
18
+
Scaling mechanisms ensure that resources are provisioned dynamically to handle incoming requests efficiently while minimizing idle capacity and cost.
19
+
20
+
Autoscaling parameters are [min-scale](/serverless-containers/concepts/#min-scale) and [max-scale](/serverless-containers/concepts/#max-scale). Available scaling policies are:
21
+
***Concurrent requests:** requests incoming to the resource at the same time. Default value suitable for most use cases.
22
+
***CPU usage:** to scale based on CPU percentage, suitable for intensive CPU workloads.
23
+
***RAM usage** to scale based on RAM percentage, suitable for memory intensive workloads.
24
+
15
25
## Cold start
16
26
17
27
Cold start is the time a Container takes to handle a request when it is called for the first time.
@@ -182,10 +192,6 @@ A sandbox is an isolation area for your container. Serverless Containers offer t
182
192
183
193
One of the advantages of Serverless Containers is that when your container is not triggered, it does not consume any resources, which enables great savings.
184
194
185
-
## Scaling
186
-
187
-
Serverless Containers make scaling your application transparent, up to 50 instances of your container can be run at the same time.
188
-
189
195
## Secrets
190
196
191
197
Secrets are an extra-secure type of environment variable. They are environment variables that are injected into your container and stored securely, but not displayed in the console after initial validation.
Copy file name to clipboardExpand all lines: pages/serverless-functions/concepts.mdx
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,16 @@ categories:
12
12
- serverless
13
13
---
14
14
15
+
## Autoscaling
16
+
17
+
Autoscaling refers to the ability of Serverless Functions to automatically adjust the number of instances without manual intervention.
18
+
Scaling mechanisms ensure that resources are provisioned dynamically to handle incoming requests efficiently while minimizing idle capacity and cost.
19
+
20
+
Autoscaling parameters are [min-scale](/serverless-functions/concepts/#min-scale) and [max-scale](/serverless-functions/concepts/#max-scale). Available scaling policies are:
21
+
***Concurrent requests:** requests incoming to the resource at the same time. Default value suitable for most use cases.
22
+
***CPU usage:** to scale based on CPU percentage, suitable for intensive CPU workloads.
23
+
***RAM usage** to scale based on RAM percentage, suitable for memory intensive workloads.
24
+
15
25
## Build step
16
26
17
27
Before deploying Serverless Functions, they have to be built. This step occurs during deployment.
@@ -142,10 +152,6 @@ A sandbox is an isolation area for your function. Serverless Functions offer two
142
152
143
153
One of the advantages of Serverless Functions is that when your function is not triggered, it does not consume any resources, which allows for significant savings.
144
154
145
-
## Scaling
146
-
147
-
Serverless Functions make scaling your application transparent, up to 50 instances of your function can be run at the same time.
148
-
149
155
## Secrets
150
156
151
157
Secrets are an extra-secure type of environment variable. They are environment variables that are injected into your function and stored securely, but not displayed in the console after initial validation.
0 commit comments