Skip to content
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)*
* 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)

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

## CRON trigger

Expand Down