AWS Compute Blog
Category: Compute
Operating Lambda: Using CloudWatch Logs Insights
CloudWatch Logs Insights allows you to search and analyze log data to find the causes of issues and help validate fixes when they are deployed. This post shows how to enable the feature for a Lambda function and search across logs. It explains why structured logging can be helpful for parsing data in analysis.
Announcing end of support for Python 2.7 in AWS Lambda
On July 15, 2021, AWS Lambda will deprecate Python 2.7 as a supported runtime, formally ending our Python 2.7 support.
Operating Lambda: Debugging configurations – Part 3
This post explains common integration errors in Lambda-based applications. These include running an unintended version or alias of a function, triggering infinite loops unintentionally, and issues with downstream availability. In each case, I explain steps you can take to remediate the issue.
Building an image searching solution with the AWS CDK
This post discusses a fully serverless architecture for searching images based on their contents. It shows how this architecture is decoupled and stateless by using S3 events, SQS messages, an EventBridge bus, and Amazon Aurora Serverless.
Operating Lambda: Debugging configurations – Part 2
This is the second post in a series on debugging Lambda-based applications. This post shows how to identify and resolve memory and CPU-bound functions, and how to understand and use timeouts effectively in production applications.
Using System Manager Parameter as an alias for AMI ID
This post was authored by Brian Terry, Senior Partner Solutions Architect, Cloud Management Tools Technical Lead. In this post, I demonstrate how you can use AWS Systems Manager Parameter Store’s, native parameter support for Amazon Machine Image (AMI) IDs while launching Amazon EC2 instances. This removes the need to update all your scripts and templates […]
Building single binary file extensions for AWS Lambda with .NET
This post shows how to create, build, and package a C# Lambda extension as a single binary file. Explore the example code and other Lambda extensions examples in the GitHub repository.
Deep dive on the new Amazon EC2 G4ad instances
This post is contributed by Amr Ragab, Senior Solutions Architect, Amazon EC2 The Amazon EC2 G4ad instance type is the latest addition to AWS’ portfolio of accelerated computing instance types. These instances are ideal for graphics-enabled and gaming workloads. They provide the best price performance for graphics intensive applications such as virtual workstations, gaming and […]
Operating Lambda: Debugging code – Part 1
Debugging serverless applications is different to debugging single-server or monolithic applications. You must consider debugging across multiple invocations and services, and understanding the state of a distributed workload.
Supporting AWS Graviton2 and x86 instance types in the same Auto Scaling group
This post is written by Tyler Lynch, Sr. Solutions Architect – EdTech, and Praneeth Tekula, Technical Account Manager. As customers seek performance improvements and to cost optimize their workloads, they are evaluating and adopting AWS Graviton2 based instances. This post provides instructions on how to configure your Amazon EC2 Auto Scaling group (ASG) to use […]