“Serverless” is an architecture where an entire infrastructure is managed by a cloud provider, and the resources are dynamically allocated on demand. A cloud provider handles the infrastructure management tasks (such as capacity provision, patching, auto-scaling, and high availability) so that you can focus on writing code.
Backend as a Service (BaaS)
BaaS is a cloud service model where cloud providers host the server-side logic. A client application running via a web browser or mobile interface connects to the cloud server through APIs.
- BaaS is popularized by the explosion of mobile applications.
- BaaS provides common functionalities such as authentication, database management, and data storage.
- You do not need to code. You just use functionalities through APIs.
Function as a Service (FaaS)
A function is a cloud service where business logic is processed by event-triggered containers that are ephemeral in nature.
- Unlike BaaS, you provide your own code that is executed in a cloud.
- Event-triggered: The code is executed by triggers that you define.
- Containers: Once an event is triggered, a code in a container runs your code.
- Dynamic Scaling: You do not need to create instances of your application. The cloud provider takes care of creating and destroying containers.
- Ephemeral: Your application only runs when it is needed.
APIs
- API Proxy: An HTTP server that allows decoupling from backend services by routing calls to specific endpoints
- API Gateway: An API proxy, which provides additional features such as authentication, input validation, monitoring, and advanced routing.
Serverless Architecture
- You do not even need to configure and manage infrastructures such as VPC, routing, or servers.
- You do not need to create or destroy instances of your application manually.
- BaaS and FaaS can be a part of the serverless architecture.
- Serverless does not fit all types of applications. It is not a magic sword.
Advantages
- Speed to Market: By eliminating the infrastructure management overhead, you can release your applications quickly.
- Scalable: You can scale your application based on demands automatically.
- Lower Cost: Serverless applications are event-driven, and you are charged only when your code is executed.
Drawbacks
- Easy to become vendor (cloud-provider) locked
- Data security concern
- No ability for infrastructure optimization
Use cases
- Sporadically or irregularly used applications
- Lightweight applications that perform straightforward tasks
AWS Serverless Offerings
Core Services
- Lambda: (FaaS) the primary AWS serverless service
- API Gateway: the core functionality for directing API calls
- Amplify: (BaaS) supports mobile apps and native serverless apps.
Supporting Services
- S3: Object Storage
- DynamoDB: fully managed NoSQL DB
- SQS (Simple Queue Service): a message queuing service
- SNS (Simple Notification Service): a service for sending text messages and mobile notifications