Discover how CloudZero helps engineering and finance get on the same team — and unlock cloud cost intelligence to power cloud profitability
Learn moreDiscover the power of cloud cost intelligence
Give your team a better cost platform
Give engineering a cloud cost coach
Learn more about CloudZero and who we are
Learn more about CloudZero's pricing
Take a customized tour of CloudZero
Explore CloudZero by feature
Build fast with cost guardrails
Drive accountability and stay on budget
Manage all your discounts in one place
Organize spend to match your business
Understand your cloud unit economics and measure cost per customer on AWS
Discover and monitor your real Kubernetes and container costs
Measure and monitor the unit metrics that matter most to your business
Allocate cost and gain cost visibility even if your tagging isn’t perfect
Identify and measure your software COGS
Decentralize cost decisions to your engineering teams
Automatically identify wasted spend, then proactively build cost-effective infrastructure
Monitor your AWS cost and track progress in real-time as you move to the cloud
CloudZero ingests data from AWS, GCP, Azure, Snowflake, Kubernetes, and more
View all cost sourcesDiscover the best cloud cost intelligence resources
Browse helpful webinars, ebooks, and other useful resources
Discover the best cloud cost intelligence content
Learn how we’ve helped happy customers like SeatGeek, Drift, Remitly, and more
Check out our best upcoming and past events
Gauge the health and maturity level of your cost management and optimization efforts
Compare pricing and get advice on AWS services including EC2, RDS, ElastiCache, and more
Learn moreDiscover how SeatGeek decoded its AWS bill and measures cost per customer
Read customer storyLearn how Skyscanner decentralized cloud cost to their engineering teams
Read customer storyLearn how Malwarebytes measures cloud cost per product
Read customer storyLearn how Remitly built an engineering culture of cost autonomy
Read customer storyDiscover how Ninjacat uses cloud cost intelligence to inform business decisions
Read customer storyLearn Smartbear optimized engineering use and inform go-to-market strategies
Read customer storyWhat is AWS Lambda, how does Lambda relate to serverless architecture, and how do you measure Lambda costs in AWS? Find out here.
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
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), though 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.
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.
So, is AWS Lambda serverless computing?
No. 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:
Another, more specific stack for a web application would look like this:
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:
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?
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:
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.
A Lambda function is the code you run in AWS Lambda.
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:
So, 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.
Credit: Serverless-stack
That is the information a function uses to execute itself when triggered.
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:
Speaking of other AWS services, how is Lambda different from Amazon EC2?
AWS supports the following languages natively:
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.
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. 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.
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.
AWS Lambda is constantly evolving, so you can expect more capabilities soon.
Lambda offers several advantages over alternative compute services. Here are a couple of straightforward AWS Lambda benefits.
What are AWS Lambda’s disadvantages?
But Lambda is not flawless. Consider the following scenarios of where not to use AWS Lambda.
Lambda does not charge by server units. Instead, you pay for the:
AWS counts a request immediately as it starts to execute in response to an invoke call or event notification. It then calculates 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:
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.
Here are Lambda prices for distinct memory sizes you allocate a function per GB-second duration in Cape Town.
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.
Here are duration prices in North Virginia and Stockholm.
Milan also has a different Lambda pricing rate for the rest.
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.
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:
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.
Here’s a snapshot from AWS, for example:
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.
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:
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.
CloudZero is the only solution that enables you to allocate 100% of your spend in hours — so you can align everyone around cost dimensions that matter to your business.