Valuable Lessons from the Trench: Learnings from Event-Driven Architecture Projects

Sergio Ruiz Combariza
3 min readAug 24, 2023

--

Throughout this article, I will discuss some of the key lessons I have learned while working with Event-Driven Architecture and how these lessons can benefit future projects.

Lesson 1: Elegant Design, Not Overly Complex

Enthusiasm for this architecture can lead to designing overly complex components and event flows. Simplicity is key. Clearly defining events, their interactions, and component roles can prevent confusion in the long run.

Example: Imagine an inventory management system in a chain of stores. Instead of creating separate events for “Inventory Added,” “Inventory Sold,” “Inventory Returned,” etc., we design an “Inventory Update” event that encompasses all stock changes.

Lesson 2: Traceability for Debugging

Asynchronous communication can make debugging challenging. Investing in monitoring and logging tools is essential. The ability to trace events throughout the system streamlines issue identification and resolution.

Example: In a real-time system, each sent event generates a unique identifier. It’s possible to implement an aspect-oriented tool that traces these identifiers throughout the process, allowing us to track any issues or message loss across the event chain.

Lesson 3: Event Persistence and Recovery

Losing events during propagation is a risk. Implementing event persistence and recovery mechanisms ensures integrity and prevents critical information loss.

Example: In a real-time system, as a backup measure, implementing an event queue backed by a database can help identify events in case of system failure.

Lesson 4: Order and Coherence

The order of event processing is crucial for data coherence. Timestamps and sequences can be used to maintain correct order in distributed architectures, avoiding issues with inconsistent data.

Example: In an inventory tracking system, timestamps can be applied to input and output events. This ensures products are withdrawn in the correct order.

Lesson 5: Controlled Concurrency

Asynchronous communication can lead to concurrency issues. The lesson here was to implement event locking and queuing mechanisms to prevent race conditions and resource conflicts.

Example: In a real-time system, an event queuing system was implemented. This ensured that each event is processed one at a time, avoiding conflicts and ensuring result integrity.

Lesson 6: Evaluation and Scalability

Inadequate design can lead to scalability difficulties. Through load testing and continuous evaluation, it’s possible to adjust architectures to handle increased demand for events and components.

A high-volume data load is essential in test scope definition, aiming to stress the system and identify potential memory and/or processor loads.

Lesson 7: Precise Event Definition

Overloading unnecessary events can impact performance. The importance of precisely defining events, avoiding the propagation of redundant or overly large events that consume valuable resources.

Example: In a real-time system, it’s advisable to group similar events and generate consolidated events for time intervals, significantly reducing the number of generated events.

Lesson 8: Resilience Through Error Handling

Proper error handling is essential. Implementing retry strategies and recovery mechanisms ensure that failures don’t lead to catastrophic system interruptions.

Example: In an online payment processing system, implementing automatic retries in case of temporary payment gateway failures is recommended. This ensures customer transactions are not lost.

Simple architectures will always be the most comprehensive.

--

--