blog > unveiling-event-driven-architecture-tailoring-the-essence-to-your-needs

Unveiling Event-Driven Architecture: Tailoring the Essence to Your Needs

by Craig Fraser
Published on: 11/29/2023

Introduction

In the ever-evolving landscape of tech jargon, “event-driven architecture” has seamlessly woven itself into our conversations, presentations, and strategy meetings. It’s often touted as a “silver bullet” for various tech challenges, promising streamlined communication and seamless integration. But amidst the buzz and the hype, there’s an understated truth: event-driven architecture isn’t a one-size-fits-all solution.

Imagine this: you attend a party where everyone shares stories simultaneously. It’s chaotic, overwhelming, and, honestly, not everyone is interested in every story being told. Event-driven architecture, in a way, operates in a similar fashion. It’s like being the storyteller at the party, announcing something noteworthy to anyone who might care. However, not every guest needs to, or should, pay attention.

At its core, event-driven architecture serves a vital purpose: notifying interested parties that something of importance has occurred, but the crucial aspect lies in understanding when, how, and where to employ it. This nuanced understanding of its use cases is the key to leveraging its true potential.

Let’s dive into the intricacies of event-driven architecture, examining its practical applications, its relevance, and the considerations needed to harness its power effectively. Because just like the stories at the party, it’s not about speaking the loudest, but rather sharing the right story with the right audience.

Event Notification

Imagine you’re at a party, and someone shares a fascinating anecdote. Event notification is like that person casually mentioning a story without seeking any specific response. The source doesn’t necessarily expect a reply or even confirmation that others have heard the story. It’s merely a notification, leaving it to the listeners to engage further or not. If you do expect a response this is not the pattern you should be using.

// Event Notification in Java using a messaging system like Kafka

// Producer sends an event to notify a change

public class EventProducer {

    public void sendEvent(String topic, String message) {

        // Code to send event/message to a specific topic

        // KafkaProducer.send(topic, message);

    }

}

Pros:

Loose Coupling: Source system doesn’t need to know who or how many systems are listening.

Asynchronous Communication: Enables systems to continue their work without waiting for a response as a response is not required to continue.

Cons:

No Guaranteed Acknowledgment: Source system might not receive confirmation that the event was received or processed.

Potential Message Loss: Events might be missed if not handled properly.

Event-Carried State Transfer

Suppose you’re hosting a gathering, and a friend updates their contact details. Event-carried state transfer is akin to your friend not only informing you of the change but also handing you a note with the updated details. You now possess the revised information without needing to confirm with your friend in the future. Similarly, a customer management system emits events with specific data changes, allowing recipients to update their records independently, reducing the need for continuous interaction with the central system, however this does mean duplicate data is being stored.

// Example in a Node.js application using an event-driven framework like EventEmitter

const EventEmitter = require('events');

class CustomerManagementSystem extends EventEmitter {

    updateCustomerDetails(customerId, updatedData) {

        // Update customer details in the system

        // Emit event with the updated data

        this.emit('customerDetailsUpdated', customerId, updatedData);

    }

}

// Recipient system handling the event

const recipientSystem = new CustomerManagementSystem();

recipientSystem.on('customerDetailsUpdated', (customerId, updatedData) => {

    // Update recipient's copy of customer data with the changes

});

Pros:

Decentralized Updates: Recipients can maintain their data without continuous communication with the central system.

Efficient and Scalable: Reduces unnecessary back-and-forth data requests, improving performance. A copy or similar set of data is kept independently in each system.

Cons:

Potential Data Inconsistency: Dependent systems might have outdated information if events are missed or delayed.

Complex Conflict Resolution: Handling conflicting updates across distributed systems can be challenging.

Event-Sourcing

Think of event-sourcing as keeping a detailed diary of the party. Whenever something significant happens—a game, a story, or an unforeseen incident—it’s jotted down with the time and context. In the tech realm, it’s akin to recording every change as an ‘event’ in the system’s history. Later, by revisiting these recorded ‘events,’ one can reconstruct the state of the system at any point in time. Just like revisiting the party’s occurrences by flipping through the diary’s pages. If you are following this pattern you aren’t using CRUD’s.

# Event-Sourcing in Python with a simple example

class ShoppingCart:

    def __init__(self):

        self._events = []

    def add_item(self, item):

        # Append the event to the list

        self._events.append({'action': 'item_added', 'item': item})

        # Logic to update the state of the cart

    def remove_item(self, item):

        self._events.append({'action': 'item_removed', 'item': item})

        # Logic to update the state of the cart

    def get_events(self):

        return self._events

# Later, these events can be replayed to rebuild the cart's state

Pros:

Full History and Traceability: Complete log of events for audit and debugging purposes.

Reconstructing State: Allows the system to be rebuilt at any point in time using the event log.

Cons:

Increased Complexity: Managing and replaying events to reconstruct state can be intricate.

Storage and Performance: Storing every event can lead to increased storage requirements and potentially affect system performance.

CQRS (Command Query Responsibility Segregation)

Consider the party venue as having separate areas for reading and writing. In CQRS, it’s like guests can either visit the ‘library’ to read, where they find documented past events (queries), or they can head to the ‘story submission booth’ to share their experiences (commands). Although not inherently about events, CQRS is often combined with event-driven architecture. This separation of reading and writing ensures efficient data handling without the need to mix up the activities.

These concepts often intertwine, offering a versatile toolkit for architects to design systems that best fit their needs. Understanding how they function independently and in cohesion can significantly impact the effectiveness of an event-driven architecture implementation.

// CQRS example in C# using separate models for read and write operations

public class WriteModel {

    public void AddNewItem(string item) {

        // Logic to add item to the database

    }

    public void UpdateItemDetails(string itemId, string details) {

        // Logic to update item details in the database

    }

}

public class ReadModel {

    public string GetItemDetails(string itemId) {

        // Query to retrieve item details from the database

        return "Details for item " + itemId;

    }

}

Pros:

Optimized for Purpose: Separating read and write operations allows for specific optimizations for each.

Scalability: Enables scaling read and write operations independently.

Cons:

Complexity and Maintenance: Requires maintaining and synchronizing two separate models.

Eventual Consistency Challenges: Keeping read and write databases consistent can be a challenge.

Developer Stories

“At the mere mention of “event-driven architecture,” my initial reflex is to bolt for the hills. It’s not an unfounded reaction but rather a response born from the recurrent absence of thorough understanding and practical experience with these concepts. Often, implementations tend to spiral into realms of unnecessary complexity, failing to precisely address the intended use case. The challenge lies in the gap between the theory and the application. The promises of event-driven architecture frequently outstrip the pragmatic realities, leading to convoluted systems that complicate rather than simplify. Misinterpretations and misapplications of these principles often result in tangled webs of interdependent systems, causing more chaos than order. However, the idea of a system structured around event sourcing sparks an excitement within me. The prospect of meticulously recording every significant state change as an event, with the ability to reconstruct the system state from these events, feels like a potential game-changer. Event sourcing, with its capacity to offer a comprehensive historical view and the ability to recreate system states at any point, is an enticing prospect. While my knee-jerk reaction might still incline towards caution, the allure of working on an event sourcing system stands as a testament to the potential within this architectural approach. It’s a reminder that, when wielded thoughtfully and in alignment with the intended objectives, event-driven architecture, particularly event sourcing, could indeed hold the key to unlocking a new level of system robustness and clarity.” – Craig Fraser

“Event driven architecture represents many things for me. On one hand it’s the “correct” implementation strategy for large scale systems that need enterprise scaling and on the other hand its potential to be over-engineered could be the downfall of the company that goes down that route. I want to see it done well and I want to contribute to a system that correctly implements the concepts of event driven architecture. Similarly, I want to avoid the over-engineered/incorrectly implemented version of it at all costs. It’s hard to wrap my head around recovering a system with that level of complexity that’s been badly implemented. My goals are always to push the boundaries and flirt with complex implementations but my experience always guides me to simpler pastures, borrowing complex concepts but putting together a neat implementation. So I would say: borrow some of the concepts of event driven architectures and scale your system towards it.” – Yashlin Naidoo

Conclusion

Event-driven architecture is akin to a multifaceted tool, offering a spectrum of benefits that streamline communication, enhance scalability, and foster loosely-coupled systems. However, like any powerful tool, its application requires discernment and a deep understanding of its implications.

The allure of event-driven architecture lies in its promise to propagate information seamlessly, fostering autonomous systems and enabling asynchronous communication. Yet, it’s crucial to recognize that while these advantages can be transformative, they come hand in hand with a considerable level of complexity.

Implementing event-driven architecture in the wrong context or without a comprehensive understanding can introduce a myriad of challenges. The asynchronous nature can lead to potential message loss or outdated data in dependent systems. Eventual consistency becomes a puzzle to solve, and managing event streams and their implications might require a significant investment in time and resources.

As architects and developers, the decision to employ event-driven architecture should be a deliberate one, weighed against the complexity it introduces. It’s not a one-size-fits-all solution but a powerful approach that, when wielded judiciously, can elevate systems to new heights of efficiency and scalability.

Careful consideration of the trade-offs, a clear understanding of the system’s needs, and a strategic approach to mitigating the complexities are fundamental. Event-driven architecture is a remarkable ally, but harnessing its potential requires a keen eye and a thoughtful hand.

Ultimately, the key lies in recognizing that while event-driven architecture holds tremendous promise, its effective implementation demands a delicate balance between its advantages and the potential challenges it might introduce.

WRITTEN BY

Craig Fraser