{"id":2336,"date":"2021-04-30T21:21:46","date_gmt":"2021-04-30T21:21:46","guid":{"rendered":"https:\/\/beon.studio\/blog\/?p=2336"},"modified":"2026-05-28T14:50:43","modified_gmt":"2026-05-28T17:50:43","slug":"aws-lambda-the-good-the-bad-and-the-ugly","status":"publish","type":"post","link":"https:\/\/beon.tech\/blog\/aws-lambda-the-good-the-bad-and-the-ugly\/","title":{"rendered":"AWS Lambda: The Good, the Bad, and the Ugly"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\"><strong>The World of Serverless Applications<\/strong><\/h3>\n\n\n\n<p>A serverless architecture allows software developers to create and launch applications without worrying about infrastructure support, fault-tolerance, scalability, and capacity provisioning. For engineering leaders, it is also part of <a href=\"https:\/\/beon.tech\/blog\/choosing-the-right-tech-stack-for-long-term-success\/\">choosing the right tech stack for long-term success<\/a>. It has been around for some years, and as people adopt the technology, several articles have been written about how good Lambda functions are, what you should be worried about, and the disadvantages of having an architecture where you don\u2019t have full control of.<\/p>\n\n\n\n<p>Here, we\u2019ll summarize and give in-depth technical answers to many of the questions and debating points about Lambda functions that have been around the internet since the birth of serverless applications.<\/p>\n\n\n\n<p><strong>The Good<\/strong><\/p>\n\n\n\n<p>When you start working with AWS Lambda functions, the first thing that you notice is <strong>how easy it is to have your code ready for production<\/strong>. As you have the code fully running on the AWS infrastructure, you\u2019ll spend <strong>less time worrying about how the application will be deployed and instead focus entirely on the business logic of the solution<\/strong>. That deployment simplicity also connects with the broader challenge of building<a href=\"https:\/\/beon.tech\/blog\/devops-latam-guide-ci-cd-remote-teams\/\"> CI\/CD infrastructure for scalable remote teams<\/a>. <\/p>\n\n\n\n<p>Taking the burden of managing the infrastructure from the developers is much appreciated. Also, as you can access the configuration that your container will have when the Lambda function gets executed, you can quickly adjust it without doing a deployment.<\/p>\n\n\n\n<p>Just after the Lambda function gets executed, AWS will create a new instance of a container under the hood, which will die ten to fifteen minutes after your Lambda function finishes. <strong>In a Serverless architecture, you\u2019ll only pay for the resources you use<\/strong>, and as Lambda functions don\u2019t have any idle cost, hosting your infrastructure in the cloud will make you save up to 90% in server costs.<\/p>\n\n\n\n<p>Imagine that your application goes viral overnight and you go from a thousand users to fifty thousand. If you are managing your own servers, you know this is a recipe for disaster.<\/p>\n\n\n\n<p>During these peak times, your business needs to handle the spike of requests without any downtime or delay, and t<strong>his is where AWS Lambda functions can save the day<\/strong>. The AWS Lambda service scales automatically with demand, creating multiple containers (or re-using them) to serve all requests.<\/p>\n\n\n\n<p>As your user base grows, you\u2019ll start to notice more Lambda invocations than before, but y<strong>ou won\u2019t have to make any change to the configuration<\/strong> to support a new load of users as Lambda will handle all of it.<\/p>\n\n\n\n<p>By using AWS Step Functions, you have the possibility to build complex asynchronous workflows to perform different tasks, a pattern that also shows up when teams evaluate a <a href=\"https:\/\/beon.tech\/blog\/rag-vs-fine-tuning-vs-agents\/\">RAG, fine-tuning, and AI agents decision framework<\/a>. Step Function workflows, or just <em>workflows<\/em>, give developers the option of chaining several AWS Lambdas where each of them performs a small task and then passes its responses to the next one. This allows the creation of small and testable Lambdas that can be reused across several workflows. We can make an entire solution using only Lambda functions, and we can also make use of it\u2019s great integration with other AWS services\u2014S3, Kinesis, DynamoDB, among many others\u2014as Lambda is an event-driven architecture.\u00a0<\/p>\n\n\n\n<p><strong>The Bad<\/strong><\/p>\n\n\n\n<p>If I told you that using AWS Lambda functions will make you save money, prevent you from worrying about infrastructure, and give developers the possibility of focusing on what&#8217;s important, you\u2019ll probably be waiting for a cold shower of reality because everyone would be using a serverless architecture if it were all advantages. <strong>Let\u2019s discuss the most common topics of debate<\/strong> that make people reject switching to a serverless architecture.<\/p>\n\n\n\n<p>If you were to search over the internet \u201cissues of using AWS Lambda\u201d, the first result that will show up are <strong>cold starts. <\/strong>It isn\u2019t a strange concept, the first request that is made to a Lambda function will have a higher response time than the following one. This can add significant overhead\u2014up to 1.5s of latency! <\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/V6-YK4xSZIjD4Ms7UdUl_Ihx29o_dV7YfdKjegrmQuiuQhpHP78YDtQU9wOpaK0mxSgYR9qfilfrY0d9lcwPBJOZ-7e1TBq_VLoM55oVDeGf33LRzKy1NiA41JusbTqTZuF5IGws\" alt=\"The request lifecycle in AWS optimization\"\/><\/figure>\n\n\n\n<p>Having cold starts on the first response from your API could or could not affect your business. Most of the time, this isn\u2019t a dealbreaker for adopting a serverless approach as multiple solutions have emerged that prevent or solve this issue.<\/p>\n\n\n\n<p>You should be worried about cold starts on Lambdas only in these scenarios:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You have a Lambda function that isn\u2019t executed very often and it should respond in the fastest possible way when a request is made.<\/li>\n\n\n\n<li>You have a front-facing Lambda function to end users that should always have the fastest response time.<\/li>\n<\/ul>\n\n\n\n<p>As said previously, multiple solutions and tips have emerged to solve this limitation or issue in Lambdas. The main considerations when working with Lambda functions and minimizing cold starts are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Avoid setting up a Virtual Private Cloud for your Lambda function as much as possible<\/strong>: Amazon Virtual Private Cloud (Amazon VPC) lets you launch AWS resources into your defined network, resembling a traditional one regarding dynamics, but with the benefits of a professional cloud service. However, when you create a VPC for your Lambda function and execute your code, not only will you have to wait for the container creation, but you\u2019ll also need to wait until the <a href=\"https:\/\/docs.aws.amazon.com\/AWSEC2\/latest\/UserGuide\/using-eni.html\">Elastic Network Interfaces<\/a> (ENIs) are created and attached to your Lambda.<\/li>\n\n\n\n<li><strong>Avoid using statically typed languages<\/strong> for your Lambda functions (Java and C#) as they have over 100 times higher cold start time. It is recommended to use Python or Node to reduce the latency added by cold starts.<\/li>\n\n\n\n<li><strong>Use a higher memory size<\/strong> for your Lambda function to decrease the latency by cold starts linearly.<\/li>\n<\/ul>\n\n\n\n<p>These could mean limitations for your application. For example, if your Lambda function needs to access a resource on the internet, you\u2019ll need to set up a VPC for it, and there is no workaround for that. If this Lambda function is user-facing, you\u2019ll most definitely experiment higher response times. Luckily, engineers have proposed and implemented solutions for this issue.<\/p>\n\n\n\n<p>There are <strong>two main approaches<\/strong> to keep your Lambda function warm, and both of them have their advantages and disadvantages:<\/p>\n\n\n\n<p>1) <a href=\"https:\/\/aws.amazon.com\/es\/blogs\/aws\/new-provisioned-concurrency-for-lambda-functions\/\">Use AWS Provisioned Concurrency<\/a>: launched in December 2019, it\u2019s the AWS proposed solution to overcome cold starts on Lambda. Provisioned Concurrency will ensure that your Lambda function has always an instantiated container and therefore you\u2019ll never experience cold starts. It\u2019s pretty simple to configure and does the job, but it kind of goes against the whole serverless experience of \u201crunning your code on demand\u201d. Another thing to keep in mind is that this solution isn\u2019t the most cost-efficient one and should only be considered for applications that run 24\/7 and cannot experience cold starts at all.<\/p>\n\n\n\n<p>2) Create a warm up module: This was the approach taken by AWS developers before Provisioned Concurrency was launched. Here, developers would create a minimum logic on the handler of the Lambda function that wouldn\u2019t make any operation and execute it on demand (using AWS Cloudwatch rules). Using this approach, developers could configure different times to keep the Lambda warm, and reduce the costs of always having the Lambda available. For example, if you were a food providing application, you\u2019ll probably only need your Lambda to have the minimum latency times during peak hours.<\/p>\n\n\n\n<p>That\u2019s enough of cold starts. We\u2019ve seen how they affect Lambda functions, how to minimize them, and how to prevent them. Now let\u2019s talk about another potential risk that Lambda functions have: <strong>Timeouts.<\/strong><\/p>\n\n\n\n<p>Lambda functions have a timeout parameter after which the Lambda runtime finishes the execution. It can happen at any point, and that might be while it\u2019s executing part of its logic.<\/p>\n\n\n\n<p>Imagine that we\u2019re downloading an S3 file and then storing it\u2019s metadata over DynamoDB and, while the download is being processed, the execution gets terminated. This could occur when the S3 file is too large, the S3 service is experiencing higher response times, or in the middle of the DynamoDB write, and it could make your application inconsistent.<\/p>\n\n\n\n<p>With this information, you\u2019ll probably be tempted to set the maximum timeout for your Lambda (15 minutes), but that isn\u2019t how Lambda functions are supposed to work. In the moment of setting up a timeout for your Lambda, you\u2019ll need to consider which is the event source that executes it. If, for example, you execute the Lambda function over an AWS API Gateway, the API Gateway will run out of time after 30 seconds, and it is a hard limit.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/EfeZochTT5KoygRSTb8FjJhHzZgOFAZ8cRzvmIaWc34m3TEErJxvngj1a_HrtrK_cxI9MiZz-h7fPMNzhADe-GZspIcDeSgGoN88Wp964EnIRuMaShRCw5o93pzAHD0p2KEiQGpv\" alt=\"Integration timeout\"\/><\/figure>\n\n\n\n<p>This means that even if your function can run for fifteen minutes, the API Gateway would have timed out and returned a 500 error to the caller.<\/p>\n\n\n\n<p>Consider using AWS Fargate instead of AWS Lambda for tasks that take more than 30 seconds to complete even if you won\u2019t have API Gateway as your event source. If your task will take many hours, consider <a href=\"https:\/\/aws.amazon.com\/es\/elasticbeanstalk\/\">Elastic Beanstalk<\/a> or <a href=\"https:\/\/aws.amazon.com\/es\/ec2\/\">EC2<\/a>.<\/p>\n\n\n\n<p>If your Lambda function is doing too many things at once, and the response time is averaging more than 3-6 seconds, you should consider using <a href=\"https:\/\/aws.amazon.com\/es\/step-functions\/\">AWS Step Functions<\/a> and breaking up the function, then delegating retry logic to Step Functions.<\/p>\n\n\n\n<p><strong>The Ugly<\/strong><\/p>\n\n\n\n<p>Now let\u2019s talk about the core issue of Lambda functions and why they <strong>shouldn\u2019t be used in every application<\/strong>. We mentioned how Lambda functions scale on demand, and how you\u2019ll never be worried about the infrastructure as everything will be delegated to AWS, but there is a catch to it.<\/p>\n\n\n\n<p>AWS Lambda functions have a limit and a rate on how much they can scale\u2014this is a concept we\u2019ve talked about. When you make a request to a Lambda, you\u2019re essentially spinning up a container that will run your code, and this is when Lambda has its biggest limitation: <strong>concurrency.<\/strong><\/p>\n\n\n\n<p>The concurrency of your lambda function can be defined as how many containers are currently running for it\u2014the number of instances of your lambda function. Lambda can support up from 500-3000 parallel instances serving requests, depending on the region of the initial burst of concurrency. Then, it can serve 500 additional instances <strong>each minute <\/strong>until all requests are resolved, it\u2019ll scale down afterwards.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/ucWaZF2M-1GQiuqLG-WeuroBbDPwkz_lNzKz-1QUovziVI4N8fL8XPnY77wgQSbVlUGBYaWMksDd2MXqizPJvOO7vHd3w2CvXU7lec_TdoCYKN7uke7RZLLUKjZ12eyIwt6eI8aR\" alt=\"Function scaling with concurrency limit\"\/><\/figure>\n\n\n\n<p>But what happens if we have a huge spike of requests coming in, and we have to continue providing more and more instances each time? This is where the real ugly comes in\u2014<strong>there is a <\/strong><strong>hard limit<\/strong><strong> on how many Lambda instances can be running on a region per account.<\/strong><\/p>\n\n\n\n<p>This limit is calculated as ten times your concurrent executions quota\u2014default is 1000.<\/p>\n\n\n\n<p>If you surpass this limit, your Lambda will begin to throttle and <strong><em>all incoming requests will fail. <\/em><\/strong>This can be even more scary when you understand that this limit is per account, and even other Lambda functions that you could have in the region will throttle as well. At scale, these infrastructure decisions become part of <a href=\"https:\/\/beon.tech\/blog\/scale-engineering-teams\/\">scaling your startup<\/a> toward sustainable revenue growth, because technical limits can quickly become business constraints.<\/p>\n\n\n\n<p>Finally, you\u2019ll need to be extra careful when working with Lambda functions and their event sources to never create an infinite loop, or your whole application could present an outage until an alarm is raised and you can figure it out while your entire system is down when the whole objective of serverless was to not to worry about infrastructure.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The World of Serverless Applications A serverless architecture allows software developers to create and launch applications without worrying about infrastructure support, fault-tolerance, scalability, and capacity provisioning. For engineering leaders, it is also part of choosing the right tech stack for long-term success. It has been around for some years, and as people adopt the technology,<a class=\"read_more_linkk\" href=\"https:\/\/beon.tech\/blog\/aws-lambda-the-good-the-bad-and-the-ugly\/\">&#8230;<\/a><\/p>\n","protected":false},"author":15,"featured_media":2653,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_sitemap_exclude":false,"_sitemap_priority":"","_sitemap_frequency":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[168],"tags":[329,330,203],"class_list":["post-2336","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technical-engineering","tag-aws","tag-aws-lambda","tag-cloud"],"acf":{"extra_author":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>AWS Lambda: The Good, the Bad, and the Ugly - Software &amp; Tech Hiring Insights | BEON.tech Blog<\/title>\n<meta name=\"description\" content=\"Learn about the pros and cons of using AWS Lambda for cloud computing. Explore all the aspects of this popular service.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/beon.tech\/blog\/aws-lambda-the-good-the-bad-and-the-ugly\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AWS Lambda: The Good, the Bad, and the Ugly - Software &amp; Tech Hiring Insights | BEON.tech Blog\" \/>\n<meta property=\"og:description\" content=\"Learn about the pros and cons of using AWS Lambda for cloud computing. Explore all the aspects of this popular service.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/beon.tech\/blog\/aws-lambda-the-good-the-bad-and-the-ugly\/\" \/>\n<meta property=\"og:site_name\" content=\"Software &amp; Tech Hiring Insights | BEON.tech Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-30T21:21:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-28T17:50:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/beon.tech\/blog\/wp-content\/uploads\/2021\/04\/Diseno-sin-titulo7.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"470\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Facundo Benielli\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@beontechok\" \/>\n<meta name=\"twitter:site\" content=\"@beontechok\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Facundo Benielli\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/beontech.wpengine.com\\\/aws-lambda-the-good-the-bad-and-the-ugly\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/beontech.wpengine.com\\\/aws-lambda-the-good-the-bad-and-the-ugly\\\/\"},\"author\":{\"name\":\"Facundo Benielli\",\"@id\":\"https:\\\/\\\/beon.tech\\\/blog\\\/#\\\/schema\\\/person\\\/4047ee722abdc17d69239ab86d2447c9\"},\"headline\":\"AWS Lambda: The Good, the Bad, and the Ugly\",\"datePublished\":\"2021-04-30T21:21:46+00:00\",\"dateModified\":\"2026-05-28T17:50:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/beontech.wpengine.com\\\/aws-lambda-the-good-the-bad-and-the-ugly\\\/\"},\"wordCount\":1922,\"image\":{\"@id\":\"https:\\\/\\\/beontech.wpengine.com\\\/aws-lambda-the-good-the-bad-and-the-ugly\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/beon.tech\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Diseno-sin-titulo7.png\",\"keywords\":[\"AWS\",\"AWS Lambda\",\"Cloud\"],\"articleSection\":[\"Technical Engineering\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/beontech.wpengine.com\\\/aws-lambda-the-good-the-bad-and-the-ugly\\\/\",\"url\":\"https:\\\/\\\/beontech.wpengine.com\\\/aws-lambda-the-good-the-bad-and-the-ugly\\\/\",\"name\":\"AWS Lambda: The Good, the Bad, and the Ugly - Software &amp; Tech Hiring Insights | BEON.tech Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/beon.tech\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/beontech.wpengine.com\\\/aws-lambda-the-good-the-bad-and-the-ugly\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/beontech.wpengine.com\\\/aws-lambda-the-good-the-bad-and-the-ugly\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/beon.tech\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Diseno-sin-titulo7.png\",\"datePublished\":\"2021-04-30T21:21:46+00:00\",\"dateModified\":\"2026-05-28T17:50:43+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/beon.tech\\\/blog\\\/#\\\/schema\\\/person\\\/4047ee722abdc17d69239ab86d2447c9\"},\"description\":\"Learn about the pros and cons of using AWS Lambda for cloud computing. Explore all the aspects of this popular service.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/beontech.wpengine.com\\\/aws-lambda-the-good-the-bad-and-the-ugly\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/beontech.wpengine.com\\\/aws-lambda-the-good-the-bad-and-the-ugly\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/beontech.wpengine.com\\\/aws-lambda-the-good-the-bad-and-the-ugly\\\/#primaryimage\",\"url\":\"https:\\\/\\\/beon.tech\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Diseno-sin-titulo7.png\",\"contentUrl\":\"https:\\\/\\\/beon.tech\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Diseno-sin-titulo7.png\",\"width\":1000,\"height\":470},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/beontech.wpengine.com\\\/aws-lambda-the-good-the-bad-and-the-ugly\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/beon.tech\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AWS Lambda: The Good, the Bad, and the Ugly\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/beon.tech\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/beon.tech\\\/blog\\\/\",\"name\":\"Software &amp; Tech Hiring Insights | BEON.tech Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/beon.tech\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/beon.tech\\\/blog\\\/#\\\/schema\\\/person\\\/4047ee722abdc17d69239ab86d2447c9\",\"name\":\"Facundo Benielli\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/beon.tech\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/avatar_user_15_1675954092-96x96.png\",\"url\":\"https:\\\/\\\/beon.tech\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/avatar_user_15_1675954092-96x96.png\",\"contentUrl\":\"https:\\\/\\\/beon.tech\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/avatar_user_15_1675954092-96x96.png\",\"caption\":\"Facundo Benielli\"},\"description\":\"Facundo Benielli is a product-minded Senior Software Engineer with deep experience building video streaming, live events, and real-time platforms. At BEON.tech, he helps design and deliver scalable, user-focused products at the intersection of technology, design, and business\u2014turning complex systems into experiences people love to use.\",\"url\":\"https:\\\/\\\/beon.tech\\\/blog\\\/author\\\/facundobenielli\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"AWS Lambda: The Good, the Bad, and the Ugly - Software &amp; Tech Hiring Insights | BEON.tech Blog","description":"Learn about the pros and cons of using AWS Lambda for cloud computing. Explore all the aspects of this popular service.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/beon.tech\/blog\/aws-lambda-the-good-the-bad-and-the-ugly\/","og_locale":"en_US","og_type":"article","og_title":"AWS Lambda: The Good, the Bad, and the Ugly - Software &amp; Tech Hiring Insights | BEON.tech Blog","og_description":"Learn about the pros and cons of using AWS Lambda for cloud computing. Explore all the aspects of this popular service.","og_url":"https:\/\/beon.tech\/blog\/aws-lambda-the-good-the-bad-and-the-ugly\/","og_site_name":"Software &amp; Tech Hiring Insights | BEON.tech Blog","article_published_time":"2021-04-30T21:21:46+00:00","article_modified_time":"2026-05-28T17:50:43+00:00","og_image":[{"width":1000,"height":470,"url":"https:\/\/beon.tech\/blog\/wp-content\/uploads\/2021\/04\/Diseno-sin-titulo7.png","type":"image\/png"}],"author":"Facundo Benielli","twitter_card":"summary_large_image","twitter_creator":"@beontechok","twitter_site":"@beontechok","twitter_misc":{"Written by":"Facundo Benielli","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/beontech.wpengine.com\/aws-lambda-the-good-the-bad-and-the-ugly\/#article","isPartOf":{"@id":"https:\/\/beontech.wpengine.com\/aws-lambda-the-good-the-bad-and-the-ugly\/"},"author":{"name":"Facundo Benielli","@id":"https:\/\/beon.tech\/blog\/#\/schema\/person\/4047ee722abdc17d69239ab86d2447c9"},"headline":"AWS Lambda: The Good, the Bad, and the Ugly","datePublished":"2021-04-30T21:21:46+00:00","dateModified":"2026-05-28T17:50:43+00:00","mainEntityOfPage":{"@id":"https:\/\/beontech.wpengine.com\/aws-lambda-the-good-the-bad-and-the-ugly\/"},"wordCount":1922,"image":{"@id":"https:\/\/beontech.wpengine.com\/aws-lambda-the-good-the-bad-and-the-ugly\/#primaryimage"},"thumbnailUrl":"https:\/\/beon.tech\/blog\/wp-content\/uploads\/2021\/04\/Diseno-sin-titulo7.png","keywords":["AWS","AWS Lambda","Cloud"],"articleSection":["Technical Engineering"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/beontech.wpengine.com\/aws-lambda-the-good-the-bad-and-the-ugly\/","url":"https:\/\/beontech.wpengine.com\/aws-lambda-the-good-the-bad-and-the-ugly\/","name":"AWS Lambda: The Good, the Bad, and the Ugly - Software &amp; Tech Hiring Insights | BEON.tech Blog","isPartOf":{"@id":"https:\/\/beon.tech\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/beontech.wpengine.com\/aws-lambda-the-good-the-bad-and-the-ugly\/#primaryimage"},"image":{"@id":"https:\/\/beontech.wpengine.com\/aws-lambda-the-good-the-bad-and-the-ugly\/#primaryimage"},"thumbnailUrl":"https:\/\/beon.tech\/blog\/wp-content\/uploads\/2021\/04\/Diseno-sin-titulo7.png","datePublished":"2021-04-30T21:21:46+00:00","dateModified":"2026-05-28T17:50:43+00:00","author":{"@id":"https:\/\/beon.tech\/blog\/#\/schema\/person\/4047ee722abdc17d69239ab86d2447c9"},"description":"Learn about the pros and cons of using AWS Lambda for cloud computing. Explore all the aspects of this popular service.","breadcrumb":{"@id":"https:\/\/beontech.wpengine.com\/aws-lambda-the-good-the-bad-and-the-ugly\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/beontech.wpengine.com\/aws-lambda-the-good-the-bad-and-the-ugly\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/beontech.wpengine.com\/aws-lambda-the-good-the-bad-and-the-ugly\/#primaryimage","url":"https:\/\/beon.tech\/blog\/wp-content\/uploads\/2021\/04\/Diseno-sin-titulo7.png","contentUrl":"https:\/\/beon.tech\/blog\/wp-content\/uploads\/2021\/04\/Diseno-sin-titulo7.png","width":1000,"height":470},{"@type":"BreadcrumbList","@id":"https:\/\/beontech.wpengine.com\/aws-lambda-the-good-the-bad-and-the-ugly\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/beon.tech\/blog\/"},{"@type":"ListItem","position":2,"name":"AWS Lambda: The Good, the Bad, and the Ugly"}]},{"@type":"WebSite","@id":"https:\/\/beon.tech\/blog\/#website","url":"https:\/\/beon.tech\/blog\/","name":"Software &amp; Tech Hiring Insights | BEON.tech Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/beon.tech\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/beon.tech\/blog\/#\/schema\/person\/4047ee722abdc17d69239ab86d2447c9","name":"Facundo Benielli","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/beon.tech\/blog\/wp-content\/uploads\/2023\/02\/avatar_user_15_1675954092-96x96.png","url":"https:\/\/beon.tech\/blog\/wp-content\/uploads\/2023\/02\/avatar_user_15_1675954092-96x96.png","contentUrl":"https:\/\/beon.tech\/blog\/wp-content\/uploads\/2023\/02\/avatar_user_15_1675954092-96x96.png","caption":"Facundo Benielli"},"description":"Facundo Benielli is a product-minded Senior Software Engineer with deep experience building video streaming, live events, and real-time platforms. At BEON.tech, he helps design and deliver scalable, user-focused products at the intersection of technology, design, and business\u2014turning complex systems into experiences people love to use.","url":"https:\/\/beon.tech\/blog\/author\/facundobenielli\/"}]}},"featured_image_src":"https:\/\/beon.tech\/blog\/wp-content\/uploads\/2021\/04\/Diseno-sin-titulo7.png","featured_image_src_square":"https:\/\/beon.tech\/blog\/wp-content\/uploads\/2021\/04\/Diseno-sin-titulo7.png","author_info":{"display_name":"Facundo Benielli","author_link":"https:\/\/beon.tech\/blog\/author\/facundobenielli\/"},"_links":{"self":[{"href":"https:\/\/beon.tech\/blog\/wp-json\/wp\/v2\/posts\/2336","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/beon.tech\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/beon.tech\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/beon.tech\/blog\/wp-json\/wp\/v2\/users\/15"}],"replies":[{"embeddable":true,"href":"https:\/\/beon.tech\/blog\/wp-json\/wp\/v2\/comments?post=2336"}],"version-history":[{"count":0,"href":"https:\/\/beon.tech\/blog\/wp-json\/wp\/v2\/posts\/2336\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/beon.tech\/blog\/wp-json\/wp\/v2\/media\/2653"}],"wp:attachment":[{"href":"https:\/\/beon.tech\/blog\/wp-json\/wp\/v2\/media?parent=2336"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/beon.tech\/blog\/wp-json\/wp\/v2\/categories?post=2336"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/beon.tech\/blog\/wp-json\/wp\/v2\/tags?post=2336"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}