3w3r.com

I recently had the opportunity to design and build a system for a major automotive parts sales company using the CQRS design pattern.  Below you can see the slides from a presentation I gave on the system architecture and how all the parts work together.

Intro slide:

slide1

Larger

Here is the core architecture diagram showing all the major components in the software.

slide2

Larger

Next, I annotate each component to show the technology used for each item.

slide3

Larger

Here is an example of one of the REST APIs.  For this, I used the NancyFX framework to create REST/JSON endpoints for commands and queries.  Note how the API endpoint is only responsible for DTO deserialization and the work is delegated to the Command Bus.

slide5

Larger

The command bus invokes the appropriate command handler for this particular action.

slide6

Larger

Handlers will then find and call methods on the affected Aggregate Root domain objects.  All domain objects are Event Sourced, so the use the Emit/Apply pattern internally to track all state changes.

slide7

Larger

All the events are stored in SQL Server as binary serialized objects.  This makes it quick to save changes and simple to restore domain entities by “playing back” the events for that entity in order.

slide8

Larger

After the event is applied to the entity, it is routed to the Event Bus.  The Event Bus uses a concept of a View Locator to find and relay the event to all of the event handlers that are affected by this event.

slide9

Larger

The event handler creates an event-sourced view.  Each view represents one ViewModel used by the client application.

slide10

Larger

The views are managed by View Manager classes.  In this case, we used the Microsoft SQL Server view manager to persist the view model content directly into SQL Server tables.

slide11

Larger

And here is an example of one of the SQL Server tables.

slide12

Larger

The REST API supports both commands and queries, of course.  The Queries use a simple Micro ORM called PetaPoco to perform queries against the SQL Server tables created by the views.  Since these tables are essentially read-only from this API, the methods in the Read API are very simple and fast.

slide13

Larger

That should give you a good overview of how the system was constructed.

Leave a Reply

Your email address will not be published. Required fields are marked *