Glossary

Serverless

Serverless is a deployment model where you write a function (handler) and pay only for the time it runs. Servers exist, but you do not think about them: the provider scales automatically from zero to billions of invocations.

How it works

You upload code. When an HTTP request or event (S3 upload, queue message) arrives, the provider spins up a container with your function, executes it, and shuts it down. A "cold start" — the first invocation after idle time — can add latency (tens of ms to seconds).

When it fits

When it does not fit