AWS Compute Blog
Build a Serverless, Private URL Shortener
Update October 10, 2023: This post is out of date – visit Building a serverless URL shortener app without AWS Lambda for a more recent solution. This post was written by Stephan Hadinger, Sr Mgr, Solutions Architecture. As a solutions architect, I often need to send large files to customers, such as architecture diagrams and […]
Create and Deploy a Chat Bot to AWS Lambda in Five Minutes
This is a guest post by Gojko Adzic, creator of ClaudiaJS The new Claudia.JS Bot Builder project helps JavaScript developers to easily create chat-bots for Facebook, Telegram, Skype, and Slack, and deploy them to AWS Lambda and Amazon API Gateway in minutes. The key idea behind this project is to remove all the boilerplate […]
Error Handling Patterns in Amazon API Gateway and AWS Lambda
Ryan Green @ryangtweets Software Development Engineer, API Gateway A common API design practice is to define an explicit contract for the types of error responses that the API can produce. This allows API consumers to implement a robust error-handling mechanism which may include user feedback or automatic retries, improving the usability and reliability of applications […]
Airtime Relaunches with Major Overhaul using ECS
Guest post by Abby Fuller (@abbyfuller) of Airtime A major part of the recent Airtime relaunch was an architecture overhaul changing our application from monolith to microservices. This switch was intended to solve some long-standing issues (bottlenecked deployments, limited redundancy, and inconsistent testing and staging/production environments), while keeping in mind our major priorities: user experience […]
Extracting Video Metadata using Lambda and Mediainfo
Michael RaposaPrincipal Consultant For a video asset, technical metadata includes information such as video codec, audio codec, resolution, frame rate, aspect ratio, and a host of other very detailed technical information. With technical metadata, customers can make intelligent decisions about what to do next in their workflow. The asset may be transcoded to a standard […]
Using API Gateway with VPC endpoints via AWS Lambda
To isolate critical parts of their app’s architecture, customers often rely on Virtual Private Cloud (VPC) and private subnets. Today, Amazon API Gateway cannot directly integrate with endpoints that live within a VPC without internet access. However, it is possible to proxy calls to your VPC endpoints using AWS Lambda functions. This post guides you […]
Sumo Logic App for AWS Lambda Released
Today, Sumo Logic made its App for AWS Lambda generally available and introduced a purpose-built Lambda function, which is immediately available for launch in the AWS Blueprint library. Now, customers using Lambda functions can better visualize things like metering for code execution, predict compute usage, and monitor memory limits through Sumo Logic’s predictive analytics capabilities, […]
Service Discovery: An Amazon ECS Reference Architecture
My colleagues Pierre Steckmeyer, Chad Schmutzer, and Nicolas Vautier sent a nice guest post that describes a fast and easy way to set up service discovery for Amazon ECS. — Microservices are capturing a lot of mindshare nowadays, through the promises of agility, scale, resiliency, and more. The design approach is to build a single […]
Simply Serverless: Use constant values in Cloudwatch event triggered Lambda functions
Welcome to the second post in our new series: Simply Serverless, today we will show you a quick tip for using Cloudwatch Events with AWS Lambda. When using an AWS Cloudwatch rule to trigger a Lambda event, one of the multiple options you have to pass data onto your Lamba function is “Constant (JSON Text)”. […]
Optimizing Disk Usage on Amazon ECS
My colleague Jay McConnell sent a nice guest post that describes how to track and optimize the disk space used in your Amazon ECS cluster. — On October 4 Amazon ECS launched support for automated container and image cleanup. Read about it in the documentation. Failure to monitor disk space utilization can cause problems that prevent Docker […]