Skip to content

Serverless

Serverless is the substrate of most modern cloud apps: pay-per-execution functions, container-based serverless, event triggers, scale-to-zero. This index brings together the concept, the architecture pattern, the hands-on build, the cross-cloud comparison, and the certs that hit serverless hardest.

flowchart LR
  EVT[HTTP / queue / event /<br/>schedule trigger] --> RT[Runtime spins up<br/>cold or warm]
  RT --> FN[Your function]
  FN --> RES[Response or<br/>side effect]
  RT -. tear down after idle .-> Z[Zero cost when idle]

Learn


Compare


Reference


Build


Certify

Certs that test serverless deeply:

Foundational - AWS Cloud Practitioner (CLF-C02) - covers Lambda + serverless concepts - Azure Fundamentals (AZ-900)

Associate - AWS Developer (DVA-C02) - Lambda, API Gateway, Step Functions are core - AWS Solutions Architect Associate (SAA-C03) - serverless architecture choices - Azure Developer Associate (AZ-204) - Functions, Logic Apps - GCP Associate Cloud Engineer - Cloud Run, Cloud Functions

Professional - AWS DevOps Engineer Pro (DOP-C02) - serverless CI/CD pipelines - AWS Solutions Architect Pro (SAP-C02) - serverless at scale - GCP Professional Cloud Architect - Cloud Run + Functions architecture


  • LLMs and GenAI - serverless functions are the standard glue for AI agents
  • Observability - serverless observability has its own gotchas (cold-start tracing)
  • Kubernetes - the alternative when serverless doesn't fit