Aditional Computing Service
Last updated
Last updated
Serverless is convenient approach in which you are neither allowed to see or get access to the underlying infrastructure or instances that are hosting the application.
A fully managed service, which provides out of the box provisioning, high availability, scalability, maintenance by AWS, enabling us to focus on our application.
Serverless computing can adjust the applications' capacity by modifying the units of consumptions, such as throughput and memory. Hence, helps in achieving flexibilty in scaling automatically.
AWS Lambda is a serverless compute option that lets you run code without needing to provision or manage servers.
While using AWS Lambda, you pay only for the compute time that you consume. Charges apply only when your code is running.
You can also code for virtually any type of application or backend service, all with zero administration.
It does come with a restriction, the code/task must complete under 15 minutes, so not suitable for long running processes.
AWS container services provides portability and efficiency along with access to underlying environment.
Containers provide you with a standard way to package your application's code and dependencies into a single object.
You can also use containers for processes and workflows in which there are essential requirements for security, reliability, and scalability.
It is a highly scalable, high-performance container management system that enables you to run and scale containerized applications on AWS.
It uses docker as container service, which runs on top of EC2.
It is a fully managed service that you can use to run Kubernetes (docker cluster management service) on AWS.
Note: Both of the above services are container orchestration tools. Container is a docker container.
It is a serverless compute engine for containers. It works with both Amazon ECS and Amazon EKS.
When using AWS Fargate, you do not need to provision or manage servers. AWS Fargate manages your server infrastructure for you. You can focus more on innovating and developing your applications, and you pay only for the resources that are required to run your containers.
To learn more on serverless compute services visit here Hands on tutorial here Deep dive here