Skip to content

Commit 8834293

Browse files
feat(serverless): advanced cold starts doc
1 parent 69badee commit 8834293

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

serverless/containers/concepts.mdx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@ categories:
1414

1515
## Cold Start
1616

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)
1825

1926
## Concurrency
2027

serverless/functions/concepts.mdx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@ categories:
1414

1515
## Cold Start
1616

17-
Cold start is the time a function Instance takes to handle a request when it is called for the first time.
17+
Cold Start is the time a Fuction takes to handle a request when it is called for the first time.
18+
19+
Startup process steps are:
20+
* Downloading the container image (which contains the built Function) to our infrastructure
21+
* Starting the container and the runtime
22+
* Waiting for the container to be ready.
23+
24+
[How to reduce cold start](/faq/serverless-functions/#how-to-reduce-cold-start-of-serverless-functions)
1825

1926
## CRON trigger
2027

0 commit comments

Comments
 (0)