Lambda - Serverless Architecture

Learn about Lambda and how it can make your architecture cheaper and easy to use.

What is Lambda?

The evolution or timeline of Lambda looks something like this:

On-Prem DataCenter –> IAAS –> PaaS –> containerization/Docker –> Serverless

Lambda is a compute service where you can upload your code and create a Lambda function. AWS Lambda takes care of provisioning and managing the servers that you use to run the code. You do not have to worry about operating systems, patching, scaling etc.

It is essentially described as an event-driven compute service where AWS Lambda runs your code in response to events. These events could be changes to the data in an Amazon S3 bucket or an Amazon Dynamo DB table.

Lambda events can trigger other Lambda events or call other AWS services like SQS or SNS.

Why use Lambda?

  1. The Lambda runtime is fully managed by AWS. Once a function is uploaded and configured, Lambda is responsible for managing the resources required to run the code.
  2. Developers are free from the traditional overhead of configuring and maintaining server instances.
  3. Lambda will immediately scale to meet spikes in demand.
  4. Lambda is cost-effective as you only pay for the computational resources used. This is, of course, true for other AWS compute services, but the cost model for Lambda is more granular than EC2 for example, with resources being charged per 100 milliseconds.
  5. Lambdas event-driven model means you can integrate nicely with a range of AWS services, but still ensure loose coupling.
  6. It’s very low cost. The first 1 million requests are free and you have to pay 0.20 per 1 million requests thereafter!!

Get hands-on with 1200+ tech skills courses.