Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using EventStore in a CQRS "architecture" makes unnecessary the use of a message bus?

I'm pretty new to the paradigms and associated architectures such as CQRS. I started a project where I think this type of technology fits. I found it interesting use EventStore in the project, but I read a bit in the documentation and I see that the use of EventStore makes it unnecessary to have a message bus, as the EventStore itself allows the subscription to events - is this correct? Would I have some advantage in implementing a bus on the top of EventStore?

like image 535
Toni Miguel López Avatar asked Aug 18 '16 11:08

Toni Miguel López


People also ask

What benefits do we get when we use Event Sourcing with CQRS?

In a CQRS context, one benefit of Event Sourcing is that the same events can be used to notify other components — in particular, to notify the read model. The read model uses the events to create a snapshot of the current state, which is more efficient for queries. However, Event Sourcing adds complexity to the design.

What problem does CQRS solve?

CQRS is a popular architecture pattern because it addresses a common problem to most enterprise applications. Separating write behavior from read behavior, which the essence of the CQRS architectural pattern, provides stability and scalability to enterprise applications while also improving overall performance.

What is the difference between CQRS and Event Sourcing?

CQRS is implemented by a separation of responsibilities between commands and queries, and event sourcing is implemented by using the sequence of events to track changes in data.

How do you query EventStore?

You can query the EventStore directly via an REST endpoint, by making GET requests to: <your cluster address>/EventsStore/<entity>/Events/ .


2 Answers

Message bus and event store are two different things that serve two different purposes.

The EventStore (GES) allows subscribing to events by using subscriptions, either client-tracked or server-tracked (competing consumers), plus long polling of ATOM feeds. Events organised into streams and each stream havign its own name, contains events for this stream. As CQRS and EventSourcing usually applied for DDD projects, streams are usually represent aggregates and reading individual streams allow re-creating the aggregate state and reading events from a stream category (aggregate type) is used for projections (building read models). Each subscriber control its own process of reading events and since events are stored, you can read them as many times as you want.

Message bus has nothing to do with saving events. It targets on reliably delivering messages between endpoints. Message bus usually supports broker or federated topology and different patterns like direct send, publish-subscribe and request-response. Once a message consumers ACKs the message, it is removed from the queue and cannot be read again. If you have no subscriber for messages that are getting published, you lose them forever.

Meaning, both are useful patterns but event store is used more for persistence and message bus / broker for durable queues and reliable delivery.

like image 111
Alexey Zimarev Avatar answered Nov 11 '22 16:11

Alexey Zimarev


I tend to think of it like this, and this is how we have it set up:

Message Bus: Handling of command and event brokering. This used to communicate between various services and to broadcast events. "Event" in this context is transient. It's just there for subscribers to trigger off of.

EventStore: This is for the storing of actions taken against a domain entity. "Event" in this context is persistent. It exists to replay and gain 'state' for an object.

You can't replay transient messages because they only fire once and then they are consumed. Events in the EventStore are persistent/replayable and are replayed to gain an objects state or to build a projection. One is a broker, the other is a source.

Keep a thick line drawn between the two physically and conceptually.

like image 4
Sinaesthetic Avatar answered Nov 11 '22 16:11

Sinaesthetic