LEARN

What’s EDA? Event-Driven Architecture Today

Event-Driven Architecture (EDA) is a modern approach to designing distributed systems with loosely coupled components. EDA has gained popularity in many industrial applications due to its flexibility, performance and scalability.  

This article offers a comprehensive overview of Event-Driven Architecture (EDA), explaining its key components and the patterns used. I’ll also cover the use cases of EDA and the benefits and challenges of implementing it. 

An overview of Event-Driven Architecture (EDA)

EDA is a modern architectural pattern designed to react to events rather than waiting for requests like in traditional request-driven architectures. An ‘event’ is a change in the state of an update of a particular system.



For example, uploading an image to cloud storage is an event that triggers an action to create a thumbnail out of the image. In the meantime, a user placing an order is an event that triggers order processing actions. 

The main components of an EDA system include producers, consumers, brokers and streams. (More on that shortly.) Typically, an event contains certain information, such as event data, source and type. Unlike traditional request-driven architectures, EDA reduces the coupling between producers and consumers, enabling them to be scaled and updated independently.  

Patterns in an Event-Driven Architecture

Event-driven architectures follow different types of patterns, as in the following examples:

  • Publish/subscribe (Pub/sub) is one of the most widely established EDA patterns where components publish events. Consumers are known as subscribers, who subscribe to consumer event messages. This pattern does not require an understanding of the consumers or the published events.  
  • Event sourcing keeps track of the event history without storing only the current state. This event sequence storage enables organizations to get an overview of the events that occurred in the past. They can be used for auditing and failure troubleshooting purposes. 
  • The Saga pattern allows systems to split large transactions into smaller, manageable transactions to process them efficiently. This pattern is especially useful for distributed transactions and enables easy failure recovery. 
  • The Aggregated Events pattern uses multiple events to formulate a single event, representing a summarized event. It is useful when handling multiple event sources and having many events. 

Components of Event-Driven Architecture

Now let’s look at the five key components of EDA.

Event Producers

Event producers are the ones that generate and emit events that will be published to consumers via a queue or any brokerage system. Examples for producers include:

  • Sensors and IoT devices
  • Web and mobile interfaces
  • External APIs

In an EDA, producers do not know the activities of the events they produce.

Event Consumers

Event consumers listen to the events that producers generate and react to the events. Generally, consumers have a subscription to listen to specific messages. They can react to events through event processors in many ways, such as by:

  • Creating new events
  • Updating their states

An example of an event consumer is an analytics and monitoring system. It listens to events emitted by system databases and generates alarms or alerts for the respective individuals to troubleshoot and take further actions. 

Event Broker

The event broker is the component that acts as the intermediary between the event producers and the consumer. They are typically message queues that listen to the producers and pass the events on to the consumer. Brokerage systems consist of technologies to ensure safe and reliable message delivery.

Examples of common event broker technologies include RabbitMQ, Apache Kafka, Amazon Simple Queue Service (SQS), Google Cloud Pub/Sub and the Amazon Kinesis streaming service. 

Event Processors

Event processors are responsible for processing the events received from event consumers. They include event processing rules to create new events, launch other tasks and publish consumer events. Event processors also comprise technologies for tasks like event routing, filtering and transformation. 

Event Storage

EDA includes components for storing events. For example, NoSQL and event-sourcing databases like Apache Cassandra and EventStoreDB. Events can be stored in various formats, including text, JSON, and XML. 

Event storage allows for maintaining event histories and event-driven analytics.

Use cases of Event-Driven Architecture

EDA is used in many scenarios, including alerting and monitoring, microservices and data analytics. Additionally, there are several industry-wide workflows where EDA plays a significant role. 

Resource monitoring and alerting

One of the common uses of EDA is monitoring the health of system resources. For example, suppose the CPU usage of a particular server instance exceeds the threshold value. In such cases, an event is triggered, alerting system administrators to take immediate action.

Most serverless applications are configured to run in an event-driven manner. Users can then create real-time dashboards and visualizations to get an overview of the system’s health and performance. Such architectures are heavily used in security mechanisms like anomaly detection. 

Event-driven data analytics

EDA systems help capture real-time data. That data can be processed and analyzed to discover patterns and gain insights into particular parts of the system. For example, fraud and anomalies can be detected by analyzing event logs.

Going one step further: particular usage patterns can be detected and analyzed to make event-driven decisions.

Microservices & modular architectures

EDA is a well-established use case in microservices architectures and modularized systems due to its qualities like loose coupling between components.

Decoupled communication between microservice architectures helps speed up the development and deployment of changes. It promotes faster development cycles and reduces the complexity of distributed systems. 

E-commerce

E-commerce is one of the industries where different types of events occur and are processed through event-driven architectures. Examples include payment processing, order handling, personalized recommendations and inventory management. EDA helps deliver a seamless e-commerce experience to users. 

Cybersecurity

EDAs are being used in several security use cases. For example, analyzing security-related events from event sources like firewalls, intrusion detection systems and access logs.

Real-time processing of such events helps identify possible cyber threats. Additionally, EDA can automate incident response tasks like alerting and blocking malicious files and network traffic. 

Advantages of Event-Driven Architecture

Now that we understand how EDA works and what you might use it for, let’s look at the benefits of event-driven architecture.

  • Improves scalability. EDA promotes decoupling with various components so that they can adjust and scale without affecting other components. It allows asynchronous communication between components to become more flexible, reducing dependencies compared to traditional request-driven architectures.
  • Improves agility. EDA systems react to events as and when they emit from the producers rather than waiting for a request to occur. Additionally, no complex coordination or event processing is required, as event routers or processors do it automatically. This enables EDA systems to adjust faster to changing user requirements.
  • Increase resilience. Systems designed according to EDA can survive because of their loose coupling. It helps the system continue its operations even if one component fails. Such systems are equipped with technologies to recover from failures, such as dead-letter queues that store events during failures and event replay mechanisms. 


  • Perform real-time event-driven analytics. Data produced through event messages creates great sources for real-time data analytics. Companies can get insights and patterns to improve business processes by processing events. 
  • Reduce complexity.  EDA simplifies integrations through loose coupling between systems and services. It allows for implementing more straightforward integrations compared to complex traditional request-driven architectures. 
  • Reduce costs. EDA allows consumers to process events in real-time, eliminating unnecessary resource consumption. It enables paying only for resource usage rather than a fixed amount, even when the system is idle. 

Challenges in Implementing Event-Driven Architecture

And it’s important to understand some general challenges in EDAs before you go implementing your own. Here are common challenges.

Debugging and error handling

Since EDAs are asynchronous, identifying the root cause of the problem can be challenging. It requires careful coordination between the integrating components. You’ll need to introduce effective error-handling mechanisms like circuit retries, circuit breakers and dead-letter queues. This could have a wider scope than traditional architecture.

Can be complex

EDA can be complex to implement for larger and more sophisticated applications.  Larger systems are often composed of multiple components with complex architectures. It requires designing and implementing an EDA with proper event coordination.

Perhaps more challenging, ensuring scalability and optimal performance when handling a larger volume of events can be a complex task. It requires careful implementation.

Complicated end-to-end testing

Testing an EDA system is complex. Every workflow and failure scenario between components needs to be thoroughly tested — simulating such scenarios can also be complex. The coordinated effort that end-to-end testing requires can be challenging. 

Complexities in data management

EDAs require tasks for managing event data, such as event storage in efficient and scalable data stores. It ensures efficient data retrieval and logging and facilitates many more data management tasks

Challenges in event monitoring

The distributed nature of EDAs, which are deployed across different environments and multiple devices, makes monitoring a challenging task. Different subsystems may use different monitoring systems, creating compatibility issues when aggregating monitoring results. 

(See how observability simplifies this monitoring challenge.)

Event-driven architecture is useful for monitoring, analytics & security

EDA is a modern architectural pattern that uses events to trigger actions asynchronously. Patterns used in an EDA include Publish/Subscribe, event sourcing, and the saga pattern. Major components of an EDA include the event producer, consumer, processor, broker, and storage. There are several use cases for EDAs, such as resource monitoring, data analytics, and cybersecurity.

Leveraging EDA designs in systems provides many benefits to organizations. There are also some challenges associated with it, such as complexities in testing, debugging, error handling, and data management.

What is Splunk?

This posting does not necessarily represent Splunk's position, strategies or opinion.

Shanika Wickramasinghe is a software engineer by profession and a graduate in Information Technology. Her specialties are Web and Mobile Development. Shanika considers writing the best medium to learn and share her knowledge. She is passionate about everything she does, loves to travel and enjoys nature whenever she takes a break from her busy work schedule. She also writes for her Medium blog sometimes. You can connect with her on LinkedIn.