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: serverless/containers/concepts.mdx
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,14 @@ categories:
14
14
15
15
## Cold Start
16
16
17
-
Cold start is the time a container Instance takes to handle a request when it is called for the first time.
17
+
Cold start is the time a Container takes to handle a request when it is called for the first time.
18
+
19
+
Startup process steps are:
20
+
* Downloading the container image to our infrastructure
21
+
* Starting the container. Optimise your container startup speed to minimize this step *(ex: avoid waiting for slow connections or downloading large objects etc... at statup)*
22
+
* Waiting for the containeer to listen on the configured port.
23
+
24
+
[How to reduce cold start](/faq/serverless-containers/#how-can-i-reduce-the-cold-starts-of-serverless-containers)
0 commit comments