Skip to content

Commit 38468c2

Browse files
thomas-tacquetRoRoJnerda-codes
authored andcommitted
feat(serverless): advanced cold starts doc (#3891)
* feat(serverless): advanced cold starts doc * Apply suggestions from code review Co-authored-by: Rowena Jones <[email protected]> Co-authored-by: nerda-codes <[email protected]> --------- Co-authored-by: Rowena Jones <[email protected]> Co-authored-by: nerda-codes <[email protected]>
1 parent b9bd069 commit 38468c2

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. Optimize your container startup speed to minimize this step (e.g., avoid waiting for slow connections or downloading large objects at startup)
22+
* Waiting for the containeer to listen on the configured port.
23+
24+
[How to reduce cold starts](/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 starts](/faq/serverless-functions/#how-to-reduce-cold-start-of-serverless-functions)
1825

1926
## CRON trigger
2027

0 commit comments

Comments
 (0)