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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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. Optimize your container startup speed to minimize this step (e.g., avoid waiting for slow connections or downloading large objects at startup)
* Waiting for the containeer to listen on the configured port.

[How to reduce cold starts](/faq/serverless-containers/#how-can-i-reduce-the-cold-starts-of-serverless-containers)

## 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 starts](/faq/serverless-functions/#how-to-reduce-cold-start-of-serverless-functions)

## CRON trigger

Expand Down