The Complete AWS Lambda Handbook for Beginners (Part 2)

In Part 1 of our Complete AWS Lambda Handbook for Beginners, we gave a refresher on the fundamentals of AWS Lambda and what is AWS Lambda. In this post, we’ll look at AWS Lambda pricing, some interesting Lambda facts and examples of great AWS Lambda use cases in your serverless application.

Read part 1 and part 3 of this handbook.

AWS Lambda Pricing

With AWS Lambda, you only pay for what you use, factoring in the number of requests and duration of your code. Lambda considers;

  • a request to be the time it starts executing in response to a trigger, such as an event notification or an invocation volume.
  • the duration of the code from the moment your code begins executing until it returns or is terminated.

AWS Lambda offers a Free Tier, which includes 1 million requests per month, and 400,000 GB-seconds of compute time on a monthly basis. The Lambda Free Tier doesn’t expire automatically at the end of the annual AWS Free Tier term, meaning it is available indefinitely to both existing and new AWS customers.

The Requests Tier includes 1 million free requests per month. After they’ve been spent, this tier will cost $0.20 per 1 million requests or $0.0000002 per a single request.

The Duration Tier comes free with 400,000 GB-seconds per month, which is up to 3.2 million seconds of computing time free of charge. After they’ve been spent, the tier costs will go to $0.00001667 per every GB-second used. The price is based upon the amount of memory allocated to the user’s function.

To calculate the price you’d be paying, you can use this AWS Lambda cost calculator. The calculator will help allocate costs and set budgets for AWS Lambda services based on your unique usage.

To see some cost examples and how the smaller print adds up to additional cost, have a look at this post explaining AWS Lambda pricing model with examples.

Lambda functions can get time-consuming and costly if you don’t prioritize its optimization. One essential practice is prioritizing the functions that are contributing the most to the overall AWS bill.

It’s understandable that many will overlook this obvious practice since AWS does not provide much granularity into our cloud spending at first glance. Specialized monitoring services can take care of that. With Dashbird, for instance, you can see your spending on a per-function basis, aggregated by time period, and receive Well-Architected insights customized based on your data to further improve your application’s reliability, scalability, and cost-efficiency. Dashbird periodically polls your AWS account for data. All the data we receive is encrypted and stored safely. Get your free account to test it out or find out more about how to reduce AWS Lambda cost.

Interesting Lambda Facts

1. Lambda supports the most popular programming languages

AWS Lambda has a large roster of programming languages that work with the system. This list includes Node.js, Python, Java, Go, and C# which are the most used AWS Lambda programming languages.

This means your programmers can hop into AWS Lambda and be comfortable getting started and while there are some differences for some of the stateful focused programmers to get used to if you are more functional-programming focused, you will feel instantly at home.

2. Only pay for what you use = more skillful development

AWS created Lambda with efficiency in mind, which is why AWS will only charge for the services required, leaving out any over-complicated and unhelpful bundles.

The exact billing calculated from invocations and duration is in 100 ms intervals meaning the more efficient your code is, the more money you could save. This rewards savvy business owners who can persuade their developers to the more potent programming forms.

3. No infrastructure management needed

When it comes to the traditional way of computing, a large portion of time and resources goes towards managing the servers that handle the technology within a business, and this often leaves business owners and other developers without time for new development.

With serverless computing and AWS Lambda, in particular, those issues are now gone.

Since there are no servers to maintain, upgrade, or fix, developers get to spend their valuable time creating new features and products, and ultimately growing the business.

4. Editing online

The traditional method of development and deployment for these services has worked the same way for a while. With AWS Lambda, these haven’t changed but they do have company now.

If you use JavaScript or Python to do your programming, you can access the editing platform from any web browser. This allows you to access and edit your infrastructure from any computer or even a mobile phone. You can also save and secure these changes back into the source control for more thorough management.

5. Environment variables

AWS Lambda gives you a powerful tool when dealing with various configurations. That tool is environment variables.

With environment variables, you can tag and categorize a massive amount of different configuration information, which can pass through to a variety of builds, areas, and other environments.

As long as you are diligent in setting the correct variables and keep track of which variable you need for the configuration at hand, the system will keep things organized and sorted.

6. API Gateway and other connection points

AWS Lambda acts as a focal point for your entire infrastructure. Using API Gateway, your cloud services become an interconnected web of easy to access functions. As you create more custom processes, these will integrate with the rest of your application through the API Gateway. As your data flows through the variety of configurations and setups you have created, API Gateway interlinks them all.

You can use this wide-spread network to hone in, customize, and change your systems as needed. Use this to alter your other AI and cloud-based systems for their most efficient use.

7. AWS Lambda runs locally

A relatively recent addition to the AWS Lambda repertoire is the ability to take your serverless infrastructure and run it on a local machine.

With SAM, the Serverless Architecture Model, you can create CloudFormation templates to define whatever application you will attempt to run at the local level. This allows you to access and configure all of your Lambda creations and setups from any localized machine. To then gain access to Lambda, all you have to do is use the SAM command line, “generate-event” or by passing a JSON file with static data. You can also access Lambda on a local level through a Serverless framework. However, both of these setups do come with some restrictions. The heaviest restrictions lie in the limit of languages you can use with the local setup.

Useful AWS Lambda Use Cases

There are endless use cases for AWS Lambda, whether they are central to your business or simply value-add elements. Here are a few of the best:

1. Serverless Chatbot:

Considering how time-consuming, difficult, and costly it is to build a chatbot, AWS Lambda allows you to run chatbot architecture that is scalable in just a few simple steps. You must set up your code to trigger when any commands are sent to the chatbot; these commands are requested via API (Messenger, Slack, etc.) and further routed from API Gateway to the Lambda function.

2. Mass Mailing:

AWS Lambda with SES (Simple Email Service) allows you to use “mass mailing”. Combining the two services, you’ll get a cost-effective and in-house serverless emailing platform.

3. Swift Document Conversion:

For those providing documents to users, there is often the problem that there isn’t a standard document format that will meet everyone’s requirements. You can, of course, make and store copies of all document formats that are most likely to be requested; however, this soon stretches storage capacity and cost. AWS Lambda can swiftly retrieve the required document, format and convert it, and finally, serve it back to the user for a download or a display on a page.

4. Processing Video:

This case is useful for those of you who have stored video files in an S3 bucket. You may have an instance that polls the bucket on a regular basis. It sits until a new file is uploaded, then it downloads the file, manipulates it in some way, and drives it back to your origin server. The problem here is you have an instance that’s sitting idle for a good part of the day with money and computer resources being used 24/7 for no valuable reason.

Using AWS Lambda allows you to upload your script (Java, JavaScript, Python, etc.) and design code to provoke an event when a new file is uploaded to the bucket, which will lead to the file being processed and pushed back to your origin server.

5. Operating Serverless Websites:

This might be the best way to take advantage of the pricing model of Lambda and S3 hosted static websites.

Think about hosting the web frontend on S3, and accelerating content transmission with CloudFront caching. The web frontend can send requests to Lambda functions using the API Gateway HTTPS endpoints. Lambda can handle the application logic and persist data to a fully managed database service (RDS for relational, or DynamoDB for a non-relational database).

Your Lambda functions and databases can be hosted within a VPC to separate them from other networks. As for Lambda, S3, and API Gateway, you get charged after the traffic is incurred, and the only fixed expense will be running the database service.

6. Security Alerts:

Do you need to be aware of any security breaches in your cloud infrastructure? Is it imperative to your overall cloud strategy to monitor your logs and to keep an audit trail? Most likely and Lambda can massively help in this situation.

You can create a Lambda function to send an alert on a specific event from your Cloudwatch/CloudTrail AWS activity logs to your designated on-call staff via email or to call your phone.

7. Automated File Synchronization:

If you have a repository that needs to be regularly synchronized to a number of locations several times a day you’ll likely find AWS Lambda very useful.

Many people don’t use a dedicated instance for things like this, instead they double or even triple up on another instance and assign this task to it. Depending on the security policy or contention for resources at specific periods during the day, this will prove not to be the best option.

Instead of keeping an instance up and running all day long, chewing away at your budget every month, you can use a Lambda function that will be triggered by a scheduled event, run your synchronization job, and then leave until the next cycle is needed to run.

8. Predictive Page Rendering:

Are you using predictive page rendering to ready web pages for display based on the probability that the user will select them? You can use a Lambda-based application to retrieve documents and multimedia files, which might be used by the next page requested, and to conduct the beginning stages of rendering them for display.

If multimedia data is being served by an outside source, the AWS Lambda application can even check for its availability, and attempt to use alternate sources if they are not available.

Wrapping up

In the end, AWS Lambda should be one of your prime go-to resources for approaching repetitive or time-exhausting tasks, along with the other heavy lifting jobs of the data processing world. It frees your prime online services to target on crucial frontend tasks, such as responding promptly to user requests, and it allows you to offload a lot of processes that would otherwise significantly decelerate your system.

In our next and final installment of the Complete AWS Lambda Handbook for Beginners, we’ll be addressing some common challenges and how to overcome them, and the importance of AWS Lambda monitoring.

Read our blog

ANNOUNCEMENT: new pricing and the end of free tier

Today we are announcing a new, updated pricing model and the end of free tier for Dashbird.

4 Tips for AWS Lambda Performance Optimization

In this article, we’re covering 4 tips for AWS Lambda optimization for production. Covering error handling, memory provisioning, monitoring, performance, and more.

AWS Lambda Free Tier: Where Are The Limits?

In this article we’ll go through the ins and outs of AWS Lambda pricing model, how it works, what additional charges you might be looking at and what’s in the fine print.

More articles

Made by developers for developers

Dashbird was born out of our own need for an enhanced serverless debugging and monitoring tool, and we take pride in being developers.

What our customers say

Dashbird gives us a simple and easy to use tool to have peace of mind and know that all of our Serverless functions are running correctly. We are instantly aware now if there’s a problem. We love the fact that we have enough information in the Slack notification itself to take appropriate action immediately and know exactly where the issue occurred.

Thanks to Dashbird the time to discover the occurrence of an issue reduced from 2-4 hours to a matter of seconds or minutes. It also means that hundreds of dollars are saved every month.

Great onboarding: it takes just a couple of minutes to connect an AWS account to an organization in Dashbird. The UI is clean and gives a good overview of what is happening with the Lambdas and API Gateways in the account.

I mean, it is just extremely time-saving. It’s so efficient! I don’t think it’s an exaggeration or dramatic to say that Dashbird has been a lifesaver for us.

Dashbird provides an easier interface to monitor and debug problems with our Lambdas. Relevant logs are simple to find and view. Dashbird’s support has been good, and they take product suggestions with grace.

Great UI. Easy to navigate through CloudWatch logs. Simple setup.

Dashbird helped us refine the size of our Lambdas, resulting in significantly reduced costs. We have Dashbird alert us in seconds via email when any of our functions behaves abnormally. Their app immediately makes the cause and severity of errors obvious.