Skip to content

Latest commit

 

History

History
71 lines (61 loc) · 2.07 KB

notex.md

File metadata and controls

71 lines (61 loc) · 2.07 KB

to search

Providers

IBM

  • https://www.ibm.com/cloud/learn/faas
  • FaaS is subset of Serverless
  • Serverless includes compute, storage, database, messaging, api gateway
  • FaaS is only event driven compute
  • best practices
    • single responsibility functions
    • isolate function => don't directly call others, so use events which are asynchronous
  • comparison to PaaS, containers, VM
    • faster provisioning time, in area of milliseconds
    • no/nearly none administration overhead
    • state and persistent connections have to be kept somewhere else
    • no os/runtime maintenance (PaaS too) compared to IaaS
    • no idle resource, functions stop after running
    • only platform with resource limits

Amazon

Google

  • https://cloud.google.com/functions/
  • Integrated security and access management
  • Faster development cycle by writing and running small code snippets
  • avoid lock-in with open source FaaS

Alternatives

BaaS

  • superset of FaaS
  • database
  • user management with option of social login
  • integrated analytics

SaaS

cross cutting concerns

  • Database DBaaS
  • Message Queue MQaaS

How does it work AWS

OpenFaaS