Table Of Contents
What Is AWS Lambda?   Is AWS Lambda Serverless Computing?   How AWS Lambda Works   What Is A Lambda Function In AWS? What Triggers AWS Lambda Functions?   What Programming Languages Does AWS Lambda Support?   AWS Lambda Vs. EC2: How They Compare   AWS Lambda Use Cases: When Should You Use AWS Lambda? What Are The Benefits Of Using AWS Lambda?   What Are The Disadvantages of AWS Lambda?   AWS Lambda Pricing Explained: How Does The Pay-As-You-Go Pricing Work? How To Monitor And Measure Lambda Costs

Amazon Web Services (AWS) offers over 200 services. But AWS Lambda continues to stand out for several reasons. This AWS Lambda tutorial will help explain Lambda in simple terms so you can decide if the service is suitable for your computing needs. 

We’ll cover what exactly AWS Lambda is, how it works, how it compares to EC2, use cases, benefits, limitations, and more. Additionally, we’ll cover how you can monitor and manage your Lambda costs without the burden of cost management. 

Table Of Contents

What Is AWS Lambda?

AWS Lambda is the event-based serverless computing service for the AWS platform. Event-driven functions are compute events that happen automatically in response to various inputs known as triggers.

This is sometimes called Functions-as-a-Service (FaaS), althoughthough the AWS Lambda ecosystem extends beyond that. More on event-driven functions later.

Through serverless computing, Lambda lets developers write and execute code without worrying about administrative tasks.

Those tasks include booking server resources from a cloud provider, maintaining servers in optimal condition, scaling RAM, CPU, and memory resources up and down manually, managing the underlying operating system, or patching security issues.

AWS takes care of all that and more on your developers’ behalf. That way, they can focus on writing code that’ll ensure your customers have smooth service delivery.

All your developers need to do is bring your code to AWS to deploy it for the specific use cases you want to see.

By not needing to buy, maintain, and replace all the hardware, AWS Lambda enables you to develop and run cloud-based operations quickly and cost-effectively.Think of Lambda in AWS as a fully managed service you can use to develop and run cloud-based operations fast and cost-effectively by not needing to buy, maintain, and replace all the hardware. Or the time and money you’d need to hire experienced talent to do all the maintenance work involved.

A big reason Lambda is cost-efficient is that it takes advantage of serverless architecture to reduce wasted cloud spend.

finops-automation-series-thumbnails

 

Is AWS Lambda Serverless Computing?

No. Rather, AWS Lambda is an essential component of serverless technology for AWS customers. Here’s how:

You need a stack of several components to build an application on serverless architecture. One common architecture is the LAMP stack, which require:

  1. Linux operating system
  2. Apache HTTP server
  3. MySQL relational database management
  4. PHP programming language

Another, more specific stack for a web application would look like this:

  1. Database service
  2. HTTP gateway service
  3. Computing service

For people already using AWS, Lambda acts as the computing service in that stack.

But that’s not why serverless computing can be a cost-efficient technology for running your operations in the cloud. There are two main benefits built into the serverless architecture:

  • Pay per request pricing model – You only pay for requests Lambda has served and the time it took AWS to serve those requests. Before your compute request, you do not pay a cent like most other architectures that cost money by running continuously without actually doing anything for you.
  • Autoscaling – This means the service scales up and down on demand. It increases compute resources such as CPU, RAM, and memory when demand increases. But it shuts some of those when you have little activity going on inside the servers. It can automatically scale from zero to practically infinity and back to zero again when your system is idle.

Here’s a simple example of automatic scaling in serverless technology

Suppose you are an insurance company looking to enjoy the advantages of serverless technology. Your computing requirements would scale up in case of a natural disaster, approaching policy renewal deadline, or when running a discount promotion.

It is during such times when potentially millions of people would search and log into your insurance company’s website to take covers against losses, make claims, or sign up to redeem the discount.

After the incident or promotion, you would notice:

  • Fewer people log onto your website.
  • You would also notice that your servers’ RAM, CPU, memory, etc., usage reduced with the reduction in server activity.

All this would happen inside your organization’s servers with no human intervention.

Whichever the case, AWS would charge you only as much or as little computing power as you use instead of a fixed amount that disregards the peak and off-peak activity you saw.

Still with us?

That’s how cloud service providers who offer serverless services charge them on a pay-as-you-go, usage-based pricing model.

You don’t need to book excess server resources like IT departments used to do in the hopes the extra capacity would handle any unforeseen spikes of activity.

You would also not have to pay for provisioned capacity that you didn’t use. AWS has an option where you can provision capacity via Amazon EC2, which we’ll compare with Lambda further below.

Combine the autoscaling feature with not needing to buy hardware or maintain it, and you’ll see why Lambda and serverless architecture can be so appealing from a cost perspective.

But how does it all come together?

 

How AWS Lambda Works

As the go-to serverless computing platform for AWS web services, Lambda offers a powerful platform for developers to create and run complex cloud-based applications.

Lambda also integrates with other web services in the AWS ecosystem seamlessly so you can have all the options you need to create large, secure, flexible, and cost-efficient applications in the cloud.

The other AWS services you may need include:

  • Database management
  • App development
  • Backup and restore
  • Website hosting
  • E-commerce
  • IoT
  • Big data analytics
  • Chatbots
  • Streaming

There are over 200 AWS services now, with more rolling out soon.

Lambda is unique because it automatically runs your code in response to multiple events from various sources within or outside the AWS ecosystem.

That is important because this is how you trigger Lambda functions, which respond by doing what you set them up to do without scaling limitations.

 

What Is A Lambda Function In AWS?

A Lambda function is the code you run in AWS Lambda.

And how do you do that?

While you don’t need to, be sure to write the code in a stateless style. That means writing code in a way that assumes there is no affinity to the underlying AWS Lambda infrastructure.

You can create, call, and manage Lambda functions using these five interfaces:

  1. AWS Management Console
  2. AWS CloudFormation
  3. AWS Serverless Application Models (SAM)
  4. AWS SDKs
  5. AWS Command Line Interface

Another thing.

Why must you use stateless code for AWS Lambda?

AWS Lambda only allows you to generate as many function copies as the rate at which events are coming in. That improves scalability and performance while keeping costs reasonably low.

However, Lambda will let you access stateful data when you call other internet-available services such as Amazon DynamoDB and Amazon S3.

What’s in a Lambda function?

AWS Lambda functions into independent containers when you use the Serverless Application Model (SAM) for your code.

The Lambda function is usually a container because it comprises configuration information that relates to that function. That information includes the function name and description, resource requirements, and entry point.

What's in a lambda function?

Credit: Serverless-stack

That is the information a function uses to execute itself when triggered.     

What Triggers AWS Lambda Functions?

As mentioned earlier, many event sources can trigger Lambda functions (cause Lambda to run your code).

For example, you can trigger a Lambda function by updating tables in Amazon DynamoDB, changing an object in Amazon S3, parsing HTTP requests through Amazon API Gateway, or streaming data through serverless processing with Amazon Kinesis.

More Lambda function triggers include:

  • CloudFront
  • SQS
  • Alexa Smart Home
  • SNS
  • AWS IoT
  • CloudWatch Events (and Logs)
  • Application Load Balancer

Speaking of other AWS services, how is Lambda different from Amazon EC2?

 

What Programming Languages Does AWS Lambda Support?

AWS supports the following languages natively:

  • Node.js (14, 12) with Amazon Linux 2 OS.
  • Python (3.6, 3.7) with Amazon Linux and (3.8) with Amazon Linux 2 OS.
  • Go Runtimes (1.x) with Amazon Linux 2 OS.
  • C# runtimes (.NET Core 3.1) with Amazon Linux 2.
  • Ruby 2.7 with Amazon Linux 2 OS.
  • Java 8 with Amazon Linux OS.
  • Java 8 (Java8.la2) and Java 11 with Amazon Linux 2 OS.
  • Custom Runtime (provided al2 and provided) with Amazon Linux 2 and Amazon Linux, respectively. So you can provide any Docker Container Image as a custom runtime.

Also, AWS provides a Runtime API you can use to write your code in additional languages. AWS maintains the runtimes, providing Amazon Linux and Linux 2 environments to run them in.

 

AWS Lambda Vs. EC2: How They Compare

If you are considering Lambda versus Amazon EC2, here’s a quick comparison.

Lambda is a fully managed serverless computing service where you only need to upload and run your code to start.

EC2 contrasts that by using cloud-based virtual machines (VMs) architecture. So EC2 will let you control or customize instances, provision capacity, operating system, network tools, and tweak the underlying infrastructure to improve aspects such as security.

But that is if you have experience handling those responsibilities.

With EC2, you can migrate existing applications to the cloud more rapidly because you do not have to change their architecture too much. You can instead change the EC2 infrastructure to support the app.

But if you do not have the experience, budget, and time to swim in a pool of technical responsibilities, Lambda provides a managed, readily available, highly scalable, and assuringly secure serverless computing platform.

You won’t have access to its infrastructure because AWS handles everything on your behalf.

Lambda also only runs in response to a trigger known as an event. It does not run 24/7, unlike other Platform-as-a-Service (PaaS) offerings. That makes it more cost-effective because AWS charges you for only the resources you use.

 

AWS Lambda Use Cases: When Should You Use AWS Lambda?

Now you know why you’d want to manage your AWS instances with Lambda rather than EC2. So here are several powerful AWS Lambda features and how to use them.

  • Take advantage of serverless computing
  • Execute real-time data processing
  • Perform stream processing in real-time
  • Automate daily backups
  • Transform data as it moves through unique resources
  • Use Amazon API Gateways to send requests to Lambda via HTTP end-points
  • Use Lambda’s flexibility and cost savings to process clicks in-app
  • Process objects you upload to Amazon S3
  • Analyze real-time logs
  • Where you have a steady stream of instances that last a short time
  • Maintain application performance at any scale
  • File processing in real-time
  • Prepare data for a Machine Learning (ML) model
  • Use in the back-end to build applications that are sensitive to latency
  • Build web apps that scale up and down seamlessly, even across multiple data centers
  • Handle third-party API requests for serverless back-end
  • Convert documents into different formats in real-time

AWS Lambda is constantly evolving, so you can expect more capabilities soon.

What Are The Benefits Of Using AWS Lambda?

Lambda offers several advantages over alternative compute services. Here are a couple of straightforward AWS Lambda benefits.

  • It offers high flexibility, availability, and cost savings for building serverless applications. Lambda’s pay per request pricing model and autoscaling capabilities ensure that you pay for only the compute resources you use and nothing more.
  • It has good tooling with SAM, VS Code Plugins, Serverless Framework, Pulumi, and many more.
  • You only pay for the resources you use instead of wasting time and money on fixed provisioning.
  • Lambda’s automatic scalability means you can handle spikes in server activity without sacrificing decent performance.
  • It’s a fully managed service where you don’t have to buy hardware or hire specialists to maintain it for you.
  • With server management removed from their to-do lists, your developers are free to improve your code to boost customer experiences.
  • Lambda integrates seamlessly with other AWS web services such as S3, Cognito, and DynamoDB.
  • It offers programming language options for authoring almost all kinds of applications on serverless infrastructure.

 

What Are The Disadvantages of AWS Lambda?

But Lambda is not flawless. Consider the following scenarios of where not to use AWS Lambda.

  • You need to keep your time-sensitive workloads small to reduce the latency characteristic in serverless computing.

Remember, the on-demand nature of serverless computing means the system shuts down any function that you haven’t used in over 15 minutes.

The next time you call it, it could take a few milliseconds to several seconds to wake up (cold start), leading to latency. Different AWS price tiers offer varying wake-up speeds.

  • You do not want to use Lambda for long-running workloads because it runs instances/functions for up to 15 minutes at a time.
  • It limits concurrent function executions to 1,000.
  • AWS Lambda bills can quickly run through your budget if you are unsure how to optimize AWS costs.

 

AWS Lambda Pricing Explained: How Does The Pay-As-You-Go Pricing Work?

Lambda does not charge by server units. Instead, you pay for the:

  • Number of requests AWS served
  • The time it took those functions to execute your code (duration)

AWS counts a request immediately as it starts to execute in response to an invoke call or event notification. It then calculates the duration from the time your Lambda function (your code) starts to execute until it terminates or returns.

The service meters billing in 1-millisecond increments. But the actual price per duration depends on the amount of memory you allocate a function.

Once you choose the amount of memory you want for your function within the AWS Lambda resource model, Lambda will assign your function commensurate CPU, RAM, and other compute resources.

That happens each time you change your memory needs.

For Provisioned Concurrency, Lambda counts:

  • The amount of concurrency you configure
  • The duration you configure it

You’ll also pay for responses and duration if you enable Provisioned Concurrency for your functions. How much you pay per request and duration may also depend on your location, although most regions get the same rates.

However, if you are in Cape Town, South Africa, expect the most expensive rate at $0.27/1 million requests and $0.0000221/GB-second.

AWS Lambda Pricing

Here are Lambda prices for distinct memory sizes you allocate a function per GB-second duration in Cape Town.

AWS Lambda Pricing

Compare that with charges applying in most other US, Europe, and Asia locations: $0.20/1 million requests and $0.0000166667/GB-second duration. 

Take North Virginia (US) or Stockholm (Europe) as examples.

AWS Lambda Pricing

Here are duration prices in North Virginia and Stockholm.

AWS Lambda Pricing

Milan also has a different Lambda pricing rate for the rest. 

How to calculate AWS Lambda costs

AWS offers every account holder 1 million free requests and 400,000 GB-seconds of compute time monthly. Use less than these numbers, and you won’t have to pay AWS a penny. 

Configuring Lambda

But what if you use more than what the AWS free tier offers?  

Once you have the requests, duration, and memory data and rates, it’ll be easier to calculate how much you can expect to pay for AWS Lambda for your needs and location. 

Here’s an example.

Say your organization is in North Virginia (US), and you allocate your function 512 MB of memory, execute it 4 million times in a month, and run for 150 milliseconds each time. Calculate your AWS Lambda bill like this:

  • First, convert 512 MB into GBs by dividing 1024 MB by 1024 MB (the accurate number of MBs in 1 GB), which works out to 1 GB.     
  • Second, convert 150 milliseconds into seconds by dividing 150 by 1,000 (number of milliseconds in 1 second), which equals 0.15 seconds.
  • Then locate per request and per duration charges on the AWS Lambda pricing page and base your rate on where you are. The costs are $0.020 per 1 million requests and $0.0000166667/GB-second duration for North Virginia.
  • To find your billable duration, multiply the amount of executions X how long they lasted in seconds, so 4 million X 0.15 seconds = 600,000 seconds. Then multiply the number of seconds X memory amount to find the GB-second amount, so 600,000 seconds X 1 GB = 600,000 GB-seconds. 
  • Remember AWS offers the first 400,000 GB-seconds free-of-charge, so 600,000 GB-seconds – 400,000 GB-seconds = 200,000 GB-seconds in billable GB-seconds. Now, the monthly compute charges = Billable GB-second duration X cost per GB-second, so 200,000 GB-second X $0.0000166667/GB-second = $3.33334 = $3.33  
  • Now find your billable requests for the month by first taking out 1 million free tier requests from the month’s total requests, so 4,000,000 requests – 1,000,000 requests = 3,000,000 billable requests for the month. 
  • Then calculate the month’s request charges = Charges per 1 million requests X billable requests for the month, so $0.20 per Million X 3,000,000/1000,000 = $0.2 X 3 =  $0.6
  • Now take total compute charges + total request charges = Month’s total charges. That is $3.33 + $0.6 = $3.93 for that month.

That example delves into AWS Lambda pricing only. You may pay more depending on the other AWS services you use with Lambda, such as data transfer charges

That’s not all. Suppose you use four distinct memory sizes to run four different functions. 

In that case, you’ll need to calculate the total monthly charges for each of the four functions separately. Then add the four costs together to arrive at the final sum you’ll pay for using commensurate AWS Lambda computing resources.   

Additionally, if you need to use Provisioning Concurrency, you’ll also use a slightly different calculation because these charges can be more complex.

AWS Lambda Pricing

Here’s a snapshot from AWS, for example:

AWS Lambda Pricing

 

Credit: AWS Lambda 

If after seeing these calculations, you feel managing your AWS bill can quickly spiral out of your manual calculators’ control like a runaway truck, that’s because it can. It usually does, unless you know how best to monitor and measure your AWS Lambda spend. 

How To Monitor And Measure Lambda Costs

Now picture this. Over 80% of AWS customers who previously ran containers in AWS had switched to Lambda by January 2020. Many cite Lambda’s potential cost savings and its operational ease as major reasons for making that move.

But using Lambda doesn’t always result in desirable cost savings. You have to know how to optimize AWS costs to see a reduction in your Lambda spend or higher ROI.

Many cost optimization tools are notoriously over-dependent on tagging, are clunky, and too complex. They also do not provide actionable insights such as mapping costs to specific unit costs, like cost per customer. 

That makes their results too complicated for many team members to understand or inform data-driven decisions. Without clear visibility into your Lambda costs, your teams may not know how their work affects everything else, such as your company’s ability to price products or services profitably or work within your engineering budget.

That can be a costly mistake, a lot like Adobe in 2018 when a dev team working on an Azure project racked up $80,000 per day for a week in unexpected fees. Pinterest, Intuit, CloudOne, and Infor have also received surprising cloud computing bills before. 

Instead, you want a cloud cost intelligence platform that shows you something as insightful and precise as this:

CloudZero Cost Per Customer Report

That’s a CloudZero Cost Per Customer report, which helps organizations see their cloud costs mapped to specific customers.

With CloudZero, you can also pull other easy-to-digest reports to help you map AWS costs to specific teams, features, and products. Additionally, our cloud cost intelligence platform will alert you of cost anomalies so you won’t have to realize you are bleeding cash a week later as Adobe did. 

Ultimately, CloudZero gives you the cost visibility you need to measure, monitor, and even optimize your AWS Lambda costs.  to see how you can control and predict your cloud spend with confidence.

The Modern Guide To Managing Cloud Costs

Traditional cost management is broken. Here's how to fix it.

Modern Cost Management Guide