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.

(This is not really a programming question perhaps, but this seems to be the most appropriate place to ask. I got asked this yesterday when doing a presentation to colleagues on these topics.)

link|improve this question

I'm not sure what to make of the fact that I got so few answers. It seems either everyone is doing CQRS and they don't bother to tell me; or almost no-one is doing CQRS; or almost no-one saw this question. – Marnix Klooster Mar 2 at 5:22
feedback

2 Answers

I designed the EventStore so that my company, SmartyStreets, could use CQRS with event sourcing in production. In fact, that's the reason the EventStore project came about, so that we had a production-grade implementation of an event store.

link|improve this answer
Bounty goes to this answer: it was the quickest and most explicit. Still a bit disappointed that I only have one actual name. – Marnix Klooster Mar 2 at 5:25
feedback

I presume the intent is to convince management you can go through with this? Because there's such a broad spectrum covered by CQRS alone, I'm inclined to say many are already using it today (caches come to mind) without being aware. A better strategy is to tackle the concerns your management has with this technique. It's not like they're gonna lose money over this, compared to N-tier, but I understand it's hard for them to take your word for it. If you analyse CQRS long enough, you'll be able to compare it to more "conventional" architecture. Also assess how "mature" your team is wrt OOAD and messaging, how fast they can learn, and add that "cost" to the project (especially if it's your first this way). Don't try to apply CQRS as a top-level architecture; find yourself a small, dedicated, core bounded context (think part of the system) to try this out. Partition your system logically, not physically. This will enable you to deploy monolithicly (that's not even a word) as you did before, yet from a development perspective things will be "more clear" (for lack of better words).
Anyways, I've gone out on a limb here, thinking I knew what the underlying reason was for your Q. If I'm off, disregard all I've said. To answer to the point, yes, I'm using CQRS/ES in systems/applications both small and very large. HTH.

link|improve this answer
Thanks for this helpful advice. It was not (yet) management but colleagues who asked for examples from practice. And I was not as much trying to convince them, as trying to pass on what I understood from reading and watching videos. That said, I'd really like to try this out in practice, and given that we may have a migration from Silverlight/.NET to HTML5/JavaScript/Java coming up, that seems like a good moment to rebuild (or at least prototype) some parts using CQRS and Event Sourcing. – Marnix Klooster Mar 2 at 5:21
feedback

Your Answer

 
or
required, but never shown

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