Serverless Computing

Concepts and terms for serverless architectures.

The data

0

Concept
Function as a Service
Description
Event-driven functions executed in ephemeral containers.

1

Concept
Event-Driven
Description
Functions triggered by events such as HTTP requests or queue messages.

2

Concept
Cold Start
Description
Latency from initializing a function runtime after idle time.

3

Concept
Stateless
Description
Functions do not retain state between invocations.

4

Concept
API Gateway
Description
Managed service routing HTTP requests to functions.

5

Concept
Pay-Per-Use
Description
Billing based on actual execution time and request count.

Fetch the same bytes

The static files are identical to what the API returns, but with no rate limit and no server round trip. Use the API when you want a query and a content type; use the files when you want to cache one document.

curl "https://yjtoon.com/api/dataset/serverless-computing?format=toon"
const res = await fetch(
  "https://yjtoon.com/static-data/dataset/serverless-computing.toon"
);
const toon = await res.text();

Rate limit: 120 requests per minute per IP, no key and no signup. API reference →

Topics

  • cloud
  • serverless
  • functions