Danielle Heberling

Tech Thoughts

Event Driven Background Processes

Event Driven Background Processes

September 12, 2021

One theme when talking about serverless computing that frequently comes up is that “serverless is event driven.” Personally I’ve found this to be true and am going to share one of my favorite event driven architectures built with AWS in this post.

Business Scenario

For this post, we’re going to use a simplified example application.

In our example application, whenever a user signs up to use our application, we want to perform the following three actions:

  1. Count the event in our 3rd party analytics service
  2. Put them on an email mailing list in our Mailchimp account
  3. Send a notification to a Slack channel in our corporate slack

Implementation

There’s many ways someone could approach this issue, but my favorite way is to use a “fan out” or “event fork” approach. Here’s how it works.

In our example use case, when the person signs up to use the application, we send a message to Amazon SNS. That SNS topic then receives that message and sends it to three queues, each having a function on the other side. Each function contains code that does the heavy lifting for us.

Infra Diagram

Message Filtering

In a real life application, you’ll most likely have many many events that you want to track and perform actions as a result.

Let’s revisit our example and add a new event we want to track - login. For login, we only want to count the event in our 3rd party analytics service and ignore adding them to a mailing list (they’re already signed up) and ignore receiving a slack notification (that would be a lot of noise in slack).

We can accomplish this by utilizing SNS message filtering.

Benefits to this Approach

Like any architecture decision, there are always pros and cons. The important thing is to weigh the two together and use what works for you and your team. Here’s some benefits I’ve noticed and why I enjoy using this approach:

  1. The events are decoupled from the initial action. For example, we wouldn’t want someone to not be able to sign up just because there was an error counting the signup in our analytics.
  2. These background reactions to events don’t need to be instant since we don’t need to provide the user feedback…it’s just for our backend office uses, so it is fine to process these events seperate from the general application flow.
  3. Let’s say you have a CLI tool and a web application…both of those can send messages to this SNS topic.
  4. If you decide you no longer want to use Mailchimp as your email list provider, you can delete the corresponding queue/function combo and add a new queue/function to process your replacement mailing list service.

Additional Things to Keep in Mind

I didn’t discuss this in detail here, but it’s a good practice to have a “dead letter queue” (DLQ) on each queue setup, so you can retry failed events. You can read more about how to do this in this blog post.

In our example architecture, we focused on SNS -> SQS -> Lambda; however, there are many other ways that you can achieve a “fan out” architecture. For example: Amazon EventBridge or AWS Step Functions.

Check out this GitHub repo for a starter template using AWS SAM if you’d like to see how to implement this architecture.