What is Event-Driven Architecture?

Get an overview of the Event-Driven Architecture pattern. Learn about different Event-Driven Architecture types and examples.

Event-Driven Architecture

Event-Driven (EDA) is an architecture pattern that allows us to build highly scalable software and cloud systems. The key advantage of the Event-Driven systems is having loosely coupled components and services.

Let’s have a look at a basic Event-Driven system design below.

Basic Event-Driven Architecture
Basic Event-Driven Architecture

EDA with Mediator

In this architecture, all events are orchestrated by the Event Mediator. It decides which subscriber can handle what event. It can be represented as a Serverless application(Azure function or AWS Lambda), a different web application, components in the system, or any other microservice. In a simple scenario, the Event Mediator does not contain any state, neither persistent nor in-memory. In complex solutions, it may contain its own database.

Event-Driven Architecture with Mediator
Event-Driven Architecture with Mediator

EDA with Event Bus

This is similar to the Event Mediator but the Event Bus does not serve as a mediator and does not contain any other complex logic. It is the same as a Message Broker Cluster. It serves as event storage that is implemented as a queue based on the First-In-First-Out principle.

Event-driven Architecture with Event-Bus
Event-driven Architecture with Event-Bus

The Event Bus can be based on the following components:

  • Azure Queue
  • Azure Service Bus
  • Apache Kafka
  • RabbitMQ

The choice of these components depends on how many events it should handle, the overall system, and architecture complexity. We will use some of these components in our architecture.

Real-world examples of the EDA

Let’s have a look at a few real-world examples.

Image recognition web portal

This is a system that contains a Single Page App (SPA) that uses cognitive services to recognize and resize images, and store metadata in the NoSql database.

Event-Driven Architecture with Cognitive Services
Event-Driven Architecture with Cognitive Services

It also uses a serverless Azure function as a microservice and the Azure EventGrid to generate events between them.

Ocean observation data API

The NOAA Climate Data API is a project (or initiative) that gathers data from weather stations, satellites, and ocean sensors and exposes it with a public API. This project allows anyone to build custom applications intended to predict the weather or use data in scientific projects.

This solution uses the Event-Driven approach at its core. You can find the rough architecture diagram of the NOAA Climate Data API below.

The architecture contains the following components:

  • Weather stations, sensors, satellites that gather data about tsunamis, water streams, hurricanes, and temperatures.
  • A satellite that is used as middleware. Sensors and weather stations send data messages to the satellite. The satellite redirects these messages to a message broker cluster.
  • Data centers retrieve, process, and store messages.
  • The API that exposes these stored messages publicly.

Important: This is an extremely simplified view of how this project works. The real project may be bigger and complex. The main idea here is to demonstrate the benefits of the Event-Driven-Architecture.

Quiz

Before we move to the architecture section, let’s quickly check our EDA basics.

Event-Driven Architecture Basics

1

What is Event-Driven Architecture?

A)

It is a pattern that allows us to build monolithic applications.

B)

It is a pattern that allows us to build highly scalable, distributed solutions.

C)

It is a pattern that allows us to build Dockerized applications.

D)

It is a pattern that allows us to build tightly coupled solutions.

Question 1 of 50 attempted