Alula ሐawandoHawandoH→ሐ

Serverless Computing Flashcards

Definition
Run code without managing servers or infrastructure
Example service
AWS Lambda, Azure Functions, Google Cloud Functions
Billing model
Pay per invocation and execution time
Scaling
Automatic, based on incoming requests
Cold start
Initial latency when a function is invoked after idle time
State management
Functions are stateless; use external storage for state
Use cases
APIs, scheduled tasks, event processing
Limitations
Execution time and memory limits vary by provider
Deployment
Typically zip or container image uploaded to the provider
Infrastructure as Code
Tools like AWS SAM or Serverless Framework help manage functions