Operations | Monitoring | ITSM | DevOps | Cloud

Lumigo

The best reason to use DynamoDB streams is...

Many clients have asked me, “When do I use DynamoDB streams vs Kinesis?” It’s a great question, since both services are very similar, especially when you process their records with Lambda functions. So let’s break it down and look at the key differences between Kinesis and DynamoDB streams. When it comes to streaming and processing real-time events on AWS, Kinesis is the de facto solution in AWS.

How to build a CICD pipeline for Serverless apps with TravisCI

Seed is a fully managed CI/CD pipeline for Serverless Framework applications. In one of our previous posts we looked at how to build a CI/CD pipeline for Serverless apps on AWS with CircleCI. Today, we’ll look at how to do the same with Travis CI. The purpose of these posts is to dive deep into real-world CI/CD setups, something which most of the tutorials out there skip. We’ll try to illustrate how to set up something similar to Seed but using Travis CI instead.

A SAR app to propagate CloudFormation tags to unsupported resources

Did you know that CloudFormation tags don’t automatically propagate to some resource types? Chief among these are CloudWatch log groups, which means you can’t include them in your cost monitoring (via cost allocation tags) among other things. The only way to tag CloudWatch log groups right now is via API calls. You can do this with the AWS SDK, or using the AWS CLI. This is hugely inconvenient!

SQS and Lambda: a Quick Tutorial and How to Handle Failure Modes

Since Lambda added SQS as an event source, there has been a misconception that SQS is now a “push-based” service. This seems true from the perspective of your function because you no longer have to poll SQS yourself. However, SQS itself hasn’t changed – it is still very much a “poll-based” service. The difference is that the Lambda service is managing the pollers (and paying for them!) on your behalf.

CloudWatch Logs for AWS Lambda: Getting Insights About Your Serverless Deployment

In our last post, we covered CloudWatch Metrics in a great deal of detail. We looked at how we can use it to monitor the health of our Lambda functions, including setting up service dashboards as well as alerts. In this post, we will focus on its sister service – CloudWatch Logs. We’ll see how it works and how to get the most out of it.

AWS Step Functions - A User's Guide

Many articles have been written about AWS Step Functions since it was first introduced in 2016. Most of them create the impression that the service is simply an extension of the Lambda function that allows us to stitch together multiple Lambda functions to call each other. But actually, it is much more than that. Step Functions allows us to design and build the flow of execution of modules in our application in a simplified manner.

The other half of software: what lurks between business logic

In 2016 I was the tech lead for a greenfield project completely devoid of legacy–I held the engineer’s promised land in front of me! I bit off as much new stuff as I could – serverless, event sourcing, functional programming, the whole gambit of cool. This is normally a very bad idea, but I had a team of strong engineers who had prior experience in this stuff, and we were ready to be technology pilots for the broader organization.