Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(serverless): advanced cold starts doc #3891

Merged
merged 2 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion serverless/containers/concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,14 @@ categories:

## Cold Start

Cold start is the time a container Instance takes to handle a request when it is called for the first time.
Cold start is the time a Container takes to handle a request when it is called for the first time.

Startup process steps are:
* Downloading the container image to our infrastructure
* 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)*
thomas-tacquet marked this conversation as resolved.
Show resolved Hide resolved
* Waiting for the containeer to listen on the configured port.

[How to reduce cold start](/faq/serverless-containers/#how-can-i-reduce-the-cold-starts-of-serverless-containers)
thomas-tacquet marked this conversation as resolved.
Show resolved Hide resolved
thomas-tacquet marked this conversation as resolved.
Show resolved Hide resolved

## Concurrency

Expand Down
9 changes: 8 additions & 1 deletion serverless/functions/concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,14 @@ categories:

## Cold Start

Cold start is the time a function Instance takes to handle a request when it is called for the first time.
Cold Start is the time a Fuction takes to handle a request when it is called for the first time.

Startup process steps are:
* Downloading the container image (which contains the built Function) to our infrastructure
* Starting the container and the runtime
* Waiting for the container to be ready.

[How to reduce cold start](/faq/serverless-functions/#how-to-reduce-cold-start-of-serverless-functions)
thomas-tacquet marked this conversation as resolved.
Show resolved Hide resolved

## CRON trigger

Expand Down