Command-Query Responsibility Segregation (CQRS) principle, in it's core form, merely introduces separation of reads from writes. This simple approach brings following benefits: denormalized query persistence is optimized for the reads (which usually make up the most of the persistence IO) ...
22
votes
7answers
2k views
CQRS Examples and Screencasts
I'm looking for some in depth end-to-end CQRS examples with a reasonable set of unit tests.
Also, if anyone knows of some CQRS screencasts as well it would be extremely handy.
I'm already aware of ...
15
votes
4answers
4k views
How to Command Query Responsibility Segregation (CQRS) with ASP.NET MVC?
I have been reading about Command Query Responsibility Segregation (CQRS). I sort of wonder how would this work with ASP.NET MVC? I get the idea of CQRS conceptually it sounds nice and sure does ...
13
votes
4answers
3k views
How is Command Query Separation (CQS) implemented when using an ORM?
The principle behind the CQS architectural pattern is that you separate your queries and commands into distinct paths. Ideally, your persistence store can be read/write partitioned, but in my case, ...
12
votes
2answers
375 views
Does validation in CQRS have to occur separately once in the UI, and once in the business domain?
I've recently read the article CQRS à la Greg Young and am still trying to get my head around CQRS.
I'm not sure about where input validation should happen, and if it possibly has to happen in two ...
11
votes
4answers
2k views
CQRS - The query side
A lot of the blogsphere articles related to CQRS (command query repsonsibility) seperation seem to imply that all screens/viewmodels are flat. e.g. Name, Age, Location Of Birth etc.. and thus the ...
10
votes
1answer
712 views
Alternatives to many-to-many relationships with CQRS
How do we model classic many-to-many relationships with CQRS/DDD?
I know that both DDD and CQRS implementations and solutions tend to be domain-specific, so it may be difficult to come up with a ...
10
votes
3answers
628 views
How would one apply command query separation (CQS), when result data is needed from a command?
In wikipedia's definition of command query separation, it is stated that
More formally, methods should return a value only
if they are referentially transparent
and hence possess no side ...
10
votes
3answers
1k views
CQRS and CRUD screens
One of the basic tenets of CQRS, as I understand it, is that commands should be behaviour-centric, and have a value in the business or the UL, and not data-centric, ie., CRUD. Instead of focusing on ...
9
votes
1answer
349 views
Architecture: simple CQS
I'm thinking about applying CQS for my ASP.NET MVC web site, but in a very simple matter. I don't mean CQRS, because I want to use the same data source for query and command parts, and so I don't need ...
9
votes
1answer
410 views
Architecture of an ASP.NET MVC application
I'm in the process of doing the analysis of a potentially big web site, and I have a number of questions.
The web site is going to be written in ASP.NET MVC 3 with razor view engine. In most examples ...
8
votes
4answers
4k views
Domain queries in CQRS
We are trying out CQRS. We have a validation situation where a CustomerService (domain service) needs to know whether or not a Customer exists. Customers are unique by their email address. Our ...
7
votes
4answers
204 views
When to use the CQRS design pattern?
My team and I have been discussing using the CQRS (Command Query Responsibility Segregation) design pattern and we are still trying to asses the pros and cons of using it. According to: ...
7
votes
4answers
482 views
C# Domain Model + repository: Where to put code that loads an entity
I have a model class which is loaded from a "GetById" method in my repository class. I now need to add additional properties to this entity, which aren't saved in the database, but are calculated by a ...
7
votes
5answers
508 views
Applying CQRS - Is unit testing the thin read layer necessary?
Given that some of the advice for implementing CQRS advocates fairly close-to-the-metal query implementation, such as ADO.NET queries directly against the database (or perhaps a LINQ-based ORM), is it ...
7
votes
2answers
365 views
CQRS - how to model a scenario execution system
I recently started investigating CQRS and DDD for a green field project that I'm about to start. I studied a great deal of material from Udi Dahan, Greg Young, Mark Nijhof and others. These were ...
7
votes
2answers
1k views
Inter-Aggregate Communication in CQRS + DDD + Event Sourcing
How should separate aggregate roots communicate with one another in an environment built on DDD principles using an event-sourced aggregate back-end?
For instance, I have a Facility aggregate root ...
7
votes
2answers
684 views
CQRS - how to handle new report tables (or: how to import ALL history from the event store)
I've studied some CQRS sample implementations (Java / .Net) which use event sourcing as the event store and a simple (No)SQL stores as the 'report store'.
Looks all good, but I seem to be missing ...
6
votes
1answer
202 views
When do domain event handlers come into play?
I have a simple examle domain of two aggregate roots and one regular entity.
Tenant, UserGroup and User where in this particular sample the Tenant and User make up for the two AggregateRoots.
When a ...
6
votes
2answers
204 views
Saving domain entities changes
here's real example that will lead to my question: I have an AddCommentToArticleCommand, which has an ArticleId, comment text and email address. This command:
uses the article repository to get the ...
6
votes
3answers
304 views
CQRS and primary key: guid or not?
For my project, which is a potentially big web site, I have chosen to separate the command interface from the query interface. As a result, submitting commands are one-way operations that don't return ...
6
votes
4answers
543 views
How to manage ViewModel changes in a CQRS + Event Sourcing Architecture
We are currently evaluating CQRS and Event Sourcing architectures. I am trying to understand what the maintenance implications of using this kind of design are. Two questions I am struggling to find ...
6
votes
1answer
416 views
Is CQRS a good approach for implementing a social application on Google App Engine?
It seems to me that the CQRS (Command and Query Responsibility Segregation) approach might be suitable for implementing a robust and responsive social application server on GAE, because:
CQRS ...
6
votes
5answers
644 views
How to “join” two Aggregate Roots when preparing View Model?
Assume that Book and Author are Aggregate Roots in my model.
In read model i have table AuthorsAndBooks which is a list of Authors and Books joined by Book.AuthorId
When BookAdded event is fired i ...
6
votes
4answers
588 views
Implementing set-based constraints in CQRS
I'm still struggling with what must be basic (and resolved) issues related to CQRS style architecture:
How do we implement business rules that rely on a set of Aggregate Roots?
Take, as an example, ...
6
votes
7answers
661 views
Implementing Generic Interface in Java
I have a Java generics question I was hoping someone could answer. Consider the following code:
public interface Event{}
public class AddressChanged implements Event{}
public class AddressDiscarded ...
6
votes
3answers
623 views
Can CQRS be used for a site like StackOverflow?
Can you use the CQRS (Command-Query Responsibility Segregation) architectural pattern to build a site like StackOverflow? I'm relatively new to CQRS and DDD (Domain Driven Design) and am exploring ...
6
votes
1answer
408 views
CQRS event versioning
Versioning
If your events changes you would create a new version of that event, and keep the old ones. To keep your domain code form being bloated with handling of all versions of events you ...
5
votes
1answer
221 views
Scala CQRS Framework
I'm looking for CQRS framework for Scala programming language.
The idea of using Scala is to avoid annotation hell that appears when Java frameworks such as AxonFramework are used.
Can you ...
5
votes
1answer
268 views
Architectural question
As a result of a previous post (Architecture: simple CQS) I've been thinking how I could build a simple system that is flexible enough to be extended later.
In other words: I don't see the need for ...
5
votes
2answers
319 views
CQRS Validation & uniqueness
In my CQRS architecture, I'd like to validate that when I send a InsertSettingCommand (setting is a key/value object), I want to check that the key doesn't already exist in my database. If I ...
5
votes
1answer
609 views
Business rule validators and command handler in CQRS
I am new to CQRS and I am tying to make sense of business rule validation within the write side (domain). I know that client side validation should be done in terms of valid date (required field, ...
5
votes
1answer
428 views
Showing changes in View when using CQRS & DDD with Domain Events & ServiceBus
I'm a little confused about the flow in a system using domain events to build the read model. Particularly, how do we deal with the fact that the user expects data (and its view) to change when they ...
5
votes
1answer
505 views
Validation and Bugfixing in CQRS
I get the general concept of CQRS, but I've got a few questions when it comes to moving beyond the example code and slide decks that are out there to dealing with real world problems.
Validation
...
5
votes
2answers
456 views
How to handle set based consistency validation in CQRS?
I have a fairly simple domain model involving a list of Facility aggregate roots. Given that I'm using CQRS and an event-bus to handle events raised from the domain, how could you handle validation ...
5
votes
2answers
917 views
How To Implement The Query Side Of CQS in DDD?
I have implemented the command side of DDD using the domain model and repositories, but how do I implement the query side?
Do I create an entirely new domain model for the UI, and where is this kept ...
5
votes
6answers
1k views
How to implement CQS with in memory changes?
Having Watched this video by Greg Yound on DDD
http://www.infoq.com/interviews/greg-young-ddd
I was wondering how you could implement Command-Query Separation (CQS) with DDD when you have in memory ...
4
votes
1answer
68 views
+50
Which (well-known) companies or projects use CQRS and/or Event Sourcing?
There's lots of information out there about CQRS and Event Sourcing. But who's actually using it in practice / in production? I tried to find references on the Internet, but couldn't find any.
...
4
votes
1answer
133 views
In CQRS, how do I communicate a list of allowable methods on an aggrregate to the UI?
I have an aggregate root 'Order', and it has a number of methods on it which internally set its 'Status' field:
Submit
Place On Hold
Take Off Hold
Confirm
Cancel
etc.
The available actions are ...
4
votes
1answer
322 views
Using an RDBMS as event sourcing storage
If I were using an RDBMS (e.g. SQL Server) to store event sourcing data, what might the schema look like?
I've seen a few variations talked about in an abstract sense, but nothing concrete.
For ...
4
votes
2answers
371 views
examples of testing the domain using joliver commondomain/eventstore
I'm looking for good examples of testing the domain using JOlivers CommonDomain and EventStore
I have been watching greg youngs videos and he has a nice simple abstract aggregate root test fixture.
...
4
votes
3answers
1k views
Event Sourcing Resources
Looking for some suggestions for useful discussion groups, articles, success stories, reference apps, and tooling (.Net) on the subject of event sourcing.
I am already familiar with:
Fowler's ...
4
votes
1answer
365 views
CQRS + EventSourcing scalability
I'm trying to use CQRS and EventSorcing in my new project. I'm following the way that Greg Young suggested several years ago (Mark Nijhof implementation - ...
4
votes
2answers
416 views
Is CQRS compatible with Entity Framework Self Tracking Enities / WCF RIA Services?
CQRS makes alot of sense. However it seems mutually exclusive to the approach of using an ORM that provides change tracking.
If I have one "channel" for queries to get my objects as RO, then theres ...
4
votes
1answer
266 views
cqrs query performance
I'd like to know when you should consider using multiple table in your query store.
For example, consider the problem where a product has it's description changed. This change could potentially have ...
4
votes
3answers
609 views
Value Objects in CQRS - where to use
Let's say we have CQRS-inspired architecture, with components such as Commands, Domain Model, Domain Events, Read Model DTOs.
Of course, we can use Value Objects in our Domain Model. My question is, ...
4
votes
5answers
287 views
Domain Driven Design, Domain objects, attitude about Setters
Been watching some Greg Young videos lately and I'm trying to understand why there is a negative attitude towards Setters on Domain objects. I thought Domain objects were supposed to be "heavy" with ...
4
votes
3answers
614 views
Multi-Tenant CQRS Architecture
My team is beginning implementation of a greenfield application, with a requirement for multi-tenancy. I have been doing a large amount of research on patterns for simple scalability, especially on ...
4
votes
1answer
298 views
How to handle situations, when the read model became out of sync with the event logs?
When snapshots of aggregates became out of sync with event log i can simply replay my events from early snapshots (which supposed to be in sync). The same i can do when i add/remove new fields or when ...
4
votes
1answer
388 views
CQRS intent command event
I am creating a web CRUD application that, after processing internal logic, will publish events to other systems in order to update their data.
I am in the first step of implementing CQRS and it ...
4
votes
2answers
372 views
CQRS - Should a Command try to create a “complex” master-detail entity?
I've been reading Greg Young and Udi Dahan's thoughts on Command Query Responsibilty Separation and a lot of what I read strikes a chord with me. My domain (we track vehicles which are doing ...