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 distributed cloud-based infrastructure, and CQRS seems to be the buzzword du jour (going so far as being called "Crack for Architecture Addicts" which I find quite funny). Benefits and pitfalls aside, it is quite hard to find anyone besides Greg Young that has used this idea extensively (or at all) in production apps and can provide real-world guidance for it.

So here are my questions: 1. Does a CQRS architecture accommodate your typical multi-tenant application, or is it better suited for larger scale internal enterprise applications. 2. If you recommend that it is used in this situation, can you provide some from-the-trenches guidance on approaches - especially on things to get right early on, and what aspects should be evolved organically. 3. If anyone has tried and found it too difficult or not realized the benefits, or has strong arguments against it (and recommend sticking to CRUD and tiered design), I would like to know about those experiences as well.

For reference, the application will be written in .NET, and the front end will initially be web based (ASP.NET MVC), potentially being extended to mobile and thick clients. Concurrency, transactional activity, and data volume are all expected to remain relatively low throughout the lifespan of the application (compared to high volume financial apps and the like). For infrastructure, we plan on using Azure.

link|improve this question

75% accept rate
(Putting this as a comment not an answer because it doesn't really address the specifics of your question) If you haven't already, I'd suggest having a read of Udi's CQRS clarified article here: udidahan.com/2009/12/09/clarified-cqrs and watching his video on it here: skillsmatter.com/podcast/open-source-dot-net/… – Michael Shimmins Dec 15 '10 at 2:21
1  
Also specifically for .NET Azure CQRS check out abdullin.com and the Lokad project code.google.com/p/lokad-cqrs – Michael Shimmins Dec 15 '10 at 2:27
Michael, thanks for the comments. I have indeed read through and watched a very large amount of information on this pattern, including these resources. What seems to be lacking is any voice from people who have used this for a while, or are even just in the process of implementing it now. Before I take the step of embracing theoretical benefits, I want to validate that the real-world challenges that accompany them aren't too big. As one of my favorite quotes says, "In theory, theory and practice are the same. In practice, they rarely are." – Mafuba Dec 15 '10 at 4:54
FYI, at Lokad, we are extensively using CQRS for multitenant apps. See also code.google.com/p/lokad-cqrs – Joannes Vermorel Jun 23 '11 at 8:32
feedback

3 Answers

up vote 0 down vote accepted

I have examined the same starting point myself, from an exploratory perspective before embarking on the actual project (we are still awaiting the business funding). In that, my research and opinion formed therefrom is that the multi-tenant axis of the architecture is largely orthogonal to the use of CQRS for the internal design of a coarse grained service. The multi-tenant requirement places additional overarching constraints around how the application segregates the tenants from a security, data, presentation/personalization, deployment/provisioning and scalability viewpoint. CQRS does not really make this better or worse and in my opinion still has value in addressing valuable architectural challenges for the Services. That said, not all Services that loosely collaborate to provide the application need to follow the CQRS pattern either, provided that the loosely coupled architecture chosen does not prohibit its use.

link|improve this answer
feedback
  1. Multi-tenancy will change a bit CQRS reading side. You will need to filter views and return tenant-related data only. And you will face the same problems using any other architecture.
  2. I would recommend CQRS because it will make your application a task-based (not a CRUD based). It means you will have commands received from UI and they will be more meaningful than DTOs. If you want to write your core with DDD principles then try to avoid Anemic Domain Model ( http://martinfowler.com/bliki/AnemicDomainModel.html ). Approach to do this - move all domain-specific logic to domain objects. Your command handlers should be very simple (authenticate, load aggregate root, translate command object to method call, if no exceptions were thrown - apply changes). It's worth to watch Greg's class record (6 hours and a half): http://cqrsinfo.com/video/ As Michael Shimmins said if you plan to use Azure as your platform - it's worth to look at Lokad.CQRS project. I used it to implement one of our projects.
  3. CQRS will not fit if you really need simple CRUD application (not task-based). CQRS require more time to understand it's principles for newcomers. On the other side it will allow to separate dev tasks between domain-core programmers and less experienced view->dto->ui programmers.
link|improve this answer
feedback

I don't think multi-tenant is any harder/easier using CQRS. You have various advantages if you use messaging: you can embed tenant identification in commands and events as header data, select an eventstore based on the identification, combine multi-tenant with multi-instance. Still, ask yourself if your domain is highly collaborative and have a domain expert at your disposal ... otherwise you end up with command/event-cud ;-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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