AWS Compute Blog

Category: Compute

Dynamic GitHub Actions with AWS Lambda

Tim Wagner, AWS Lambda General Manager Will Gaul, AWS Lambda Software Developer         Update on August 26, 2019: due to the depreciation of GitHub Services since this blog was published, it is now recommended to use a webhook instead of the method shown below. GitHub webhooks allow you to easily generate notifications […]

Easy Authorization of AWS Lambda Functions

Tim Wagner, AWS Lambda Authorization and security is a critical feature of every AWS service, including Lambda. But enabling developers to authorize and secure their Lambda functions isn’t enough — Lambda should also be easy to use, quick to set up, and flexible to configure. In this post we talk about how Lambda was designed to achieve […]

AWS Lambda Webinar on 4/30

Tim Wagner, AWS Lambda I’m hosting a “101”-level webinar on Lambda, including a demo of recently added Mobile Compute functionality, on 4/30. Learn more about the event Register now  

Running Arbitrary Executables in AWS Lambda

In previous posts on this blog we’ve talked about how Lambda manages container lifetimes and how you can use custom JavaScript libraries in Lambda, even native ones. In this post I cover how you can run arbitrary executables, including languages like Python, and shell scripts like bash. First, a note on security: Lambda’s built-in sandbox […]

AWS San Francisco Summit: Compute-related Presentations

Tim Wagner, AWS Lambda AWS San Francisco Summit 2015 Lots of exciting news last week in San Francisco around Event Computing and container computing. Andy Jassy keynote, including Amazon ECS and AWS Lambda GA announcements In summit the keynote, Andy Jassy announces that the Amazon ECS and AWS Lambda services are both now generally available […]

Using Amazon SNS to Trigger Lambda Functions

Tim Wagner, AWS Lambda Using Amazon SNS to Trigger Lambda Functions Sending messages to SNS can now also trigger Lambda functions, allowing you to add arbitrary compute capabilities to any service or application that knows how to send messages, such as Amazon CloudWatch alarms. Intelligent IT: Triggering Code by Sending it Messages SNS is an […]

AWS Lambda is Generally Available

Tim Wagner, AWS Lambda AWS Lambda Now Generally Available AWS Lambda has exited preview and is now ready for production workloads! Increased Default Limits AWS Lambda is designed to scale to the size of your workload, whether that’s one request a month or 10,000 a second. As a safety precaution each account has two limits: […]

Using Packages and Native nodejs Modules in AWS Lambda

Tim Wagner, AWS Lambda Bryan Liston, AWS Solutions Architect In this post we take a look at how to use custom nodejs packages with AWS Lambda, including building and packaging native nodejs modules for use in your Lambda functions. To do the steps below, you’ll need an EC2 instance or a similar machine running Amazon […]

Understanding Container Reuse in AWS Lambda

Tim Wagner, AWS Lambda AWS Lambda functions execute in a container (sandbox) that isolates them from other functions and provides the resources, such as memory, specified in the function’s configuration. In this article we discuss how Lambda creates and reuses these sandboxes, and the impact of those policies on the programming model. Startup The first […]

Compute content at re:Invent 2014

Tim Wagner, AWS Lambda AWS re:Invent 2014 Recap The 2014 re:Invent conference was an exciting venue for us to launch new compute-related services and features, including the Amazon EC2 Container Service, which supports Docker containers and lets you easily run distributed applications on a managed cluster of EC2 instances, and AWS Lambda, a new compute […]