Command-Query Responsibility Segregation (CQRS) is a principle of separating commands (that change the data) from queries (that read the data). See 'about cqrs tag' for more details and references to learning materials.

learn more… | top users | synonyms

2
votes
5answers
71 views

Communicating between two Bounded Contexts in DDD

I have few different Bounded Contexts in the domain. The validation of a CRUD operation is built in each Bounded Context. For example, I can create an entity called GAME only if the person creating ...
0
votes
1answer
73 views

Synchronizing Query-side Data in CQRS - won't there still be contention?

I have a general question about the CQRS paradigm in general. I understand that a CommandBus and EventBus will decouple the domain model from our Query-side datastore, the merits of eventual ...
0
votes
3answers
91 views

Event versioning in CQRS

We are at a point in our development cycle (asp.net mvc applciation), where we need to introduce changes to our existing commands and events (say adding/removing a few properties etc). I have been ...
1
vote
2answers
45 views

Replaying events - validating transitions

I'm wondering exactly what logic should be contained when applying an event to a state while replaying events using some event sourcing solution. Specifically, I'm wondering about validation, say ...
0
votes
0answers
50 views

Guidelines for designing a dynamic domain model

First of all, sorry for my bad english. Now, here is my question: Using CQRS/DDD in our current project we crashed with a delicate situation: We manage aggregates called Zones that represents cities, ...
1
vote
2answers
166 views

CQRS and synchronous operations (such as user registration)

I'm in the process of adopting DDD concepts for designing our next projects, and more specifically CQRS. After reading a LOT of stuff I'm now trying to implement a simple Proof Of Concept. The thing ...
0
votes
4answers
82 views

CQRS Eventual Consistency Event Dependencies

I'm new to the CQRS and eventual consistency models, so forgive me if this is a stupid question. Given that I'm just getting started, I have a local in memory CommandBus and EventPublisher. My events ...
0
votes
0answers
86 views

Sharing resource files across projects in a ASP.net MVC Application

I have a project structure that looks like this Application.Repository ( class library ) Application.Web ( MVC Application ) I want to keep the amount of coding to a minimum so when the ...
2
votes
1answer
84 views

DDDD: Event data

I'm trying to get my head around DDDD in Greg Young's style. There is much talk about how to implement DDDD with CQRS+EventSourcing and there are some sample implementations ... and altogether it can ...
2
votes
1answer
40 views

multiple types for SetHandlerInterface() with membus and ioc container

Going over demo CQRS code here the command and event handlers are wired up separately as below: public interface CommandHandler<in T> { void Handle(T command); } public interface ...
0
votes
1answer
61 views

CQRS - seperate command and event handlers

Going over some really interesting demo CQRS code here commands and handlers are split in to separate interfaces. public interface CommandHandler<in T> { void Handle(T command); } public ...
1
vote
2answers
80 views

CQRS run handlers in specific order

I have a running order for 2 handlers Deleting and Reordering pictures and would like some advises for the best solution. On the UI some pictures are deleted, the user clicks on the deleted button. ...
1
vote
2answers
82 views

Is this too much responsibilities for one class?

I got a command : MovePlayerCommand. One of the validator for this command does 3 things : calculate the cost for the player to move (can be called for validation but also for displaying purpose) ...
3
votes
1answer
253 views

Read side implementation approaches using CQRS

I've moved to the project which is actively using CQRS + event sourcing. From the first glance it's implemented in accordance with all those books and blogs, but finally I realized what exactly is ...
0
votes
0answers
31 views

EventStore (v2.0): The Event and PipelineState tables

Why does the PipelineState table store the Id from the Event table, as a mechanism for establishing a relationship between entries in the PipelineState table and entries in the Event table? Storing ...
2
votes
1answer
49 views

The EventSources and Events tables in an EventStore database

Why is uniqueidentifier (which equates to a GUID in .NET) used as the type for the Id fields in the EventSources and Events tables? Would it not be faster to use an integer type (like bigint in SQL ...
0
votes
0answers
93 views

What CQRS framework offers the most features? [closed]

I'm new to the CQRS pattern. As far as I know, there are no blog posts comparing the different implementations. Currently, I'm aware of the following frameworks: NCQRS CommonDomain (EventStore) ...
1
vote
6answers
106 views

CQRS Command Constructs

I have a CQRS command like this public sealed class RequestRoute { public RequestRoute(string fromAddressName, double fromLatitude, double fromLongitude, string toAddressName, double toLatitude, ...
2
votes
1answer
71 views

CQRS Matching Events and Commands

I'm getting started with CQRS and I'm finding that my Event class definitions match my Command definitions almost 1 to 1. Aside from the obvious code repetition, I'm trying to figure out what I'm ...
1
vote
1answer
46 views

Should Command / Handles hold the full aggregates or only its id?

I'm trying to play around with DDD and CQRS. And I got this two solutions : add AggregateId to my command / event. It's nice beauce I can use my command as my web service's parameter, and I can as ...
-1
votes
3answers
84 views

How to run periodical tasks in the system built with CQRS approach?

It turned out that I need to have some periodical tasks within my system which is run under Windows Azure worker role. I would like to emphasize that it may be any platform Azure, Amazon, in-house ...
2
votes
1answer
84 views

Protobuf-net serializer for eventstore 3.0

Can anyone point me to a protobuf-net serializer for EventStore 3.0? I'm having trouble I think mainly due to the serialization in event store 3 wrapping the event body and headers in an ...
2
votes
2answers
100 views

CQRS read model side - normalized tables

I have been reading about Command Query Responsibility Segregation (CQRS) and how this pattern would suit our current applications. When it comes to the read model I am well aware of the concepts: ...
1
vote
2answers
80 views

Event sourcing - How to recover missed events

Lets say that I have two aggregates deployed in two separate services. Aggregate 2 listens to the events of aggregate 1. When I stop aggregate service 2 for a long time, how do I recovery all the ...
4
votes
3answers
81 views

User Auth in EventSourcing applications

I'm looking into crafting an app with DDD+CQRS+EventSourcing, and I have some trouble figuring out how to do user auth. Users are intrinsically part of my domain, as they are responsible for clients. ...
0
votes
0answers
42 views

CQRS EventStore is it possible to prevent commit in case of dispatch fail?

Dispatch commit for read model to be updated is rather a part of transaction than post-step. I'd prefer to fail the whole procedure in case it is not possible to update read model. Is such behavior ...
2
votes
2answers
92 views

What is the difference between a saga, a process manager and a document-based approach?

What I understand is that all three concepts are related to long-running transactions. A process manager is, to my understanding, a finite state machine which simply reacts on events and emits ...
0
votes
2answers
96 views

Handling large amount of events in event sourcing

CQRS with event sourcing looks like a perfect fit as an architecture for one of our systems, there is only one little thing we are current worried about: Handling a large amount of events and dealing ...
1
vote
1answer
152 views

Message bus integration and resync of Bounded Contexts after downtime - Service Bus 1.0

I have just downloaded joliver eventstore and looking to wire up a service bus with Windows Service Bus 1.0 for an application separated across more than one Bounded Context process. If a bounded ...
1
vote
2answers
175 views

DDD - Aggregate Root load/query performance

I'm playing with DDD and this question pop up. How I load child Aggregate Roots? Several performance issues would arise. Imagine the following example: public AggregateRoot1 { #region ...
2
votes
2answers
92 views

Event sourcing and logging/replaying commands

I've never heard about storing/replaying commands in CQRS/ES architectures and wanted to ask is that a common practice? I understand the difference between commands and events, but, lets say, from QA ...
1
vote
1answer
42 views

Commit error with EventStore

I am seeing the following error in Jonathon Oliver's EventStore : ERROR: 23505: duplicate key value violates unique constraint "ix_commits_revisions" Any ideas why this is happening?
2
votes
1answer
89 views

joliver / EventStore eventual consistency

I'm trying to figure out how my event storage and my read model are related in terms of actual nuts and bolts implementations. My limited understanding of the event store leads me to believe: Event ...
0
votes
1answer
100 views

cqrs eventstore dispatching to via web service

Other than latency, is there a significant disadvantage to looping through a list of web services to post the event? Dispatcher(event) { var services = getServices(); for each service in ...
0
votes
3answers
230 views

CRUD part of app in DDD\ES\CQRS

I would like to use DDD\CQRS\ES in my project. I just started using it so I don’t have a lot of experience. I am aware of existing core domain, supporting domain and CRUD domain. My core domain have ...
0
votes
0answers
96 views

RavenDB CQRS Repository querying approach sanity check and exposing IQueryable

So im starting to hack around a little with RavenDB. Before I start, I have read this and this. Im building an app following the CQRS approach. My current plan for data access and persitance is ...
0
votes
1answer
137 views

CQRS/ES - changing two aggregates

I’ve got problem with DDD. I just started using it so I don’t have a lot of experience. There are two bounded contexts: Maintenance and Clients. Each Client has list of parts of an engine. In ...
2
votes
0answers
151 views

EventStore throws ConcurrencyException when using RavenDB

My wire up looks like this. return Wireup.Init() .UsingRavenPersistence("RavenDB") .ConsistentQueries() .InitializeStorageEngine() .UsingJsonSerialization() .Build(); ...
9
votes
1answer
351 views

Refactoring “procedural” WCF service

I'm tryng to refactor a monstrous WCF service into something more manageable. At the time of writing, the service takes about 9 dependencies via constructor, which makes unit testing it very ...
0
votes
1answer
83 views

How to version logic in a distributed event-sourced system

Example My distributed event-sourced system simulates houses being built and purchased over a period of time. For simplicity sake, we will use the year as the distributed clock value (forgetting ...
3
votes
1answer
165 views

Communication between contexts in a Domain-Driven Design

At my company, we currently work with a DDD architecture, in combination with event sourcing and CQRS. In the initial version, we allowed every context to receive the events from any other context. ...
1
vote
1answer
62 views

How is the best way to overcome bad / inconsistent data in an event-store?

Event stores are supposed to be Add only, you never delete or edit data. In my case, we didn't disallow some mid-stream changes that were made by a user, and the data is "bad" / inconsistent... in ...
0
votes
2answers
100 views

Highly Maintainable Web Services and adding new Command/Query handlers

I have started with this project in an attempt to learn CQRS and write maintainable WCF services. However, I have some general questions on WCF. Every time I add a command/query handler contract and ...
0
votes
0answers
112 views

using JOliver's EventStore with nServiceBus messages as interfaces or using NES

I would like to use Jonathan Oliver's EventStore "raw" API (store.CreateStream(), store.Add(), ...) with RavenDB persistance and NServiceBus dispatching (using the dispatcher I found in the SO ...
3
votes
1answer
130 views

In Event Store / CQRS architecture, why are events stored instead of commands?

Presumably we could resurrect state by applying the same set of commands, so why not simply store commands rather than events?
0
votes
0answers
146 views

EventStore:The wait operation timed out error

I am getting "A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: SSL Provider, error: 0 - The wait operation timed out.)" ...
5
votes
1answer
129 views

CQRS/ES: Bulk operations/imports

I'm trying to wrap my head around the whole CQRS/ES idea, and contemplating writing a proof of concept and technical specification of how to implement it in our current application. The problematic ...
0
votes
0answers
39 views

How to define Snapshots in NES

How or where can I define when a snapshot should be taken. In NCQRS there is a class that defines the frequency. Is there a similar concept with NES or do I implement it myself? If so, where is the ...
0
votes
0answers
94 views

J Oliver CommonDomain saga sample

I was playing around with Jonathan Oliver's CommonDomain Saga Implementation. For me to wrap my head around this, I implemented a simple saga a below and an in memory saga repository. I am doing this ...
0
votes
1answer
121 views

Is this how CQRS is implemented with DI and Repository pattern?

I assigned a POC project to someone where I asked to implement both Command Query separation, Inversion of Control (with Dependency Injection) and Repository pattern. “Someone” gave me a POC solution ...

1 2 3 4 5 9