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: http://martinfowler.com/bliki/CQRS.html

we haven't seen enough uses of CQRS in the field yet to be confident that we understand its pros and cons

So what do you guys think, when does a problem call for using CQRS?

link|improve this question
Darren Cauthon does a nice presentation on CQRS and Event Sourcing, including the drawbacks - Google says it's available here, but I can't verify that through our firewall. – TrueWill Jan 11 at 18:52
he personally hasn't seen it in the field – Henrik Jan 20 at 15:14
feedback

5 Answers

CQRS is not a pattern that, once you decide on using it, will often encompass the whole application.

It is a concept that builds on Domain Driven Design (DDD). And an important strategic concept of DDD is the so-called Bounded Context.

In a typical application there are multiple bounded contexts, any of which can be implemented the way it makes sense. For instance

  • User Management -> CRUD
  • Invoicing -> CRUD
  • Insurance Policy Management (the Core Domain) -> CQRS
  • ...

This probably doesn't answer your question but it might give a little more insight into the topic. To be honest, I don't think it can be answered at all without considering a project's specifics, and even then there is rarely something like a definite best practice.

link|improve this answer
feedback

Well CQRL critics may say that CQRS is overcomplicated and that might be true.

Of course it is overhead to develop simple CRUD application in CQRS style so I'd consider using CQRS in following cases:

  1. Large team you can split development tasks between people easily if you have choosed cqrs architecture. Your top people can work on domain logic leaving routine stuff to less skilled developers.
  2. Difficult business logic CQRS forces you to not mix domain logic and infrastructural operations.
  3. Scalability matters With CQRS you can achieve great read and write performance. Command handling can be scaled out on multiple nodes. And as queries are read only operations they can be optimized to do fast read operations.
link|improve this answer
feedback

When you have a complex or hard business domain and:

  • with event sourcing; you want a nice way of testing logic
  • with event sourcing; you want to prove your behaviours through testing and reasoning
  • you have multiple clients, or consumers, of your domain service (not just single web server)

OR you have users that need to act on common data:

  • and you want to formalize the data merge concepts of your domain
  • or you want to apply logic for merging events

OR you have scalability requirements:

  • you apply the pattern as a denormalization pattern that removes bottlenecks
  • you want to scale horizontally and not vertically

OR you have performance problems (other side of scalability):

  • e.g. you need to migrate your architecture towards an event driven architecture - CQRS as a pattern is a good stepping stone.

OR you have a team that is physically disjunct:

  • e.g. parts of your team is in another country
  • or it's hard to get face-to-face communication, so you want to decouple the read models from the write-side of things (sagas, domain, CRUD)

It's not CQRS that's overly complicated, it's computers that are.

link|improve this answer
feedback

From my point of view it adds two major benefits.(Among with a lot of others)

  1. Extreme scaling ability
  2. Very useful when it come to distibuted teams.
link|improve this answer
feedback

To add to the discussion, using a no-sql database like ravendb for the Q can add benefits like denormalized objects for reading, faster performance, and HTTP access for requesting data via REST, etc.

link|improve this answer
Yep right on Brian. We are in fact using ravendb :) – Eric Neifert May 14 at 14:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.