Event Sourcing is a design pattern that captures all changes to an application's state as a sequence of events.
0
votes
1answer
50 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 ...
1
vote
2answers
43 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
4answers
77 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 ...
3
votes
1answer
247 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
30 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
46 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 ...
2
votes
1answer
65 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
55 views
Why is my command event string field being retrieved as null
I am writing my first EventStore test app, I am re-hydrating my object from a stream, and whilst it gets the numberSold correctly, the title is null, and I don't understand why - the command when ...
4
votes
3answers
80 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
2answers
92 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
148 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
1answer
43 views
write only stream
I'm using joliver/EventStore library and trying to find a way of how to get a stream not reading any events from it.
The reason is that I want just to write some events into that store for specific ...
1
vote
1answer
156 views
LMAX Architecture - Growth of data
Consider the following scenario from LMAX Architecture description from Martin Fowler:
I'll use a simple non-LMAX example to illustrate. Imagine you are
making an order for jelly beans by credit ...
2
votes
2answers
90 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 ...
0
votes
3answers
222 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 ...
2
votes
2answers
151 views
DDD: inheritance and transactions
I am experimenting with Domain Driven Design and Event Sourcing. I am planning to use (developing in C#) NServiceBus, JOliver's EventStore and NES to bind them. I already have the infrastructure ...
1
vote
1answer
78 views
Do aggregates have to be strongly consistent?
Everything I have read on DDD implies that state within aggregates must be strongly consistent.
This implies that if one required redundancy, then only strongly-consistent replication can be used ...
0
votes
1answer
82 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 ...
0
votes
2answers
103 views
DDD, Object graphs and Event Sourcing
Intro
This question is about DDD and Event Sourcing where entities within an Aggregate other than the Aggregate Root have event-generating behaviour.
Example
What follows is an example of the ...
1
vote
1answer
60 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 ...
5
votes
1answer
128 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
38 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 ...
3
votes
1answer
99 views
Replaying events on a service bus without event store
I am trying to design a new service and trying to follow CQRS. I am using ORM (NHibernate) for read and write models. In addition to that, write models are not event sourced. My goal was to keep ...
1
vote
1answer
82 views
Event sourcing chaining events
I'm implementing a bounded context using event sourcing but have come across a problem. Say I'm modelling a game of soccer, and I'm interested in both the individual goals scored (who scored them etc) ...
1
vote
4answers
116 views
Logging user actions in Wicket
I'm experimenting with Wicket and event sourcing. I'm trying to log the user actions, so we can replay them or use them for testing or demoing purposes.
What would you recommend as strategy?
For ...
0
votes
1answer
209 views
EventStore: learning how to use
I'm trying to learn EventStore, I like the concept but when I try to apply in practice I'm getting stuck in same point.
Let's see the code:
foreach (var k in stream.CommittedEvents)
{
//handling ...
4
votes
1answer
332 views
CQRS/Event Sourcing, how get consistent data to apply business rules?
at times I'm developing a small project using CQRS pattern and Event Sourcing.
I have a structural issue and I'm not aware which solution to take to resolve it.
Imagine the following example:
A ...
3
votes
1answer
208 views
CQRS: Storing events and publishing them - how do I do this in a safe way?
As I've learned in Why is the CQRS repository publishing events, not the event store? it's the CQRS repository's task to publish events. So far, so good.
Of course, storing the events and publishing ...
1
vote
5answers
190 views
CQRS + EventSourcing. Change Aggregate Root history
I have following problem.
Given. CQRS + EventSourcing application.
How is that possible to change the state of the Aggregate root in history?
For example, accounting application, accounter wants to ...
1
vote
2answers
178 views
CommonDomain - how to unit test aggregate root
I have a small system that uses Jonathan Oliver's CommonDomian and EventStore.
How can I unit test my aggregate roots in order to verify that correct events are raised?
Consider following aggregate ...
0
votes
1answer
123 views
Event sourcing: Write event before or after updating the model
I'm reasoning about event sourcing and often I arrive at a chicken and egg problem. Would be grateful for some hints on how to reason around this.
If I execute all I/O-bound processing async (ie ...
0
votes
0answers
64 views
JavaScript EventSource Reload Issue
I'm trying to add a push service to my web app. I experienced a very strange behavior when trying to reload the page:
As aspected I'm getting 10 messages on the console, one every two seconds. So ...
1
vote
1answer
514 views
Is Jonathan Oliver's EventStore actively developed? [closed]
I'm starting a new project that will be hosted on Windows Azure.
I'm using RavenDb as the backend and I would like to use CQRS and event sourcing.
I read good reviews of Jonathan's EventStore and it ...
3
votes
2answers
160 views
Avoiding Primitive Obsession when using EventSourcing
I've been building a small game as a learning exercise into building an application using Event Sourcing as the persistence mechanism.
One issue I'm having trouble with at the moment is a good deal ...
1
vote
1answer
265 views
Error handling in EventSource
I'm trying to make a page that uses the EvenSource object (in javascript) to make an Server-Sent Event (comet).
I read many tutorials about it and haven't found one that explains the following ...
0
votes
0answers
141 views
Selenium BDD testing a CQRS system
I have an event sourced CQRS system running on top of rabbitmq. I want to be able to do some BDD style testing with storyq and selenium but have ran into a couple of problems:
Before running the ...
0
votes
2answers
163 views
EDA: “Cascading” Events or Explicit commands?
Scenario
Lets say I have three major components of a system:
UI - Collects input from the user and creates a LoginUserCommand that is sent over a message bus. The user interface then listens to ...
2
votes
1answer
158 views
Event Sourcing command or event from external system?
In most cases I understand the distinction between a command and an event in a CQRS + ES system. However, there is one situation that I can't figure out.
Suppose I am building a personal finance ...
0
votes
1answer
124 views
EventSource Error with Dart
I'am trying to use EventSource with Dart.
var source = new EventSource('/myUrl');
source.on.error.add((Event e) => print('error'));
source.on.message.add((MessageEvent me) => print(me.data));
...
1
vote
1answer
326 views
CQRS + Event Sourcing: (is it correct that) Commands are generally communicated point-to-point, while Domain Events are communicated through pub/sub?
Didn't know how to shorten that title.
I'm basically trying to wrap my head around the concept of CQRS (http://en.wikipedia.org/wiki/Command-query_separation) and related concepts.
Although CQRS ...
0
votes
0answers
87 views
Domain object graph, JSF managed bean, CQRS commands [closed]
I have a big object graph (to capture the customer config in a multi-tenant app) that I am currently modeling. The goal is to build a provisioning UI that the client can use for self-provisioning. The ...
1
vote
1answer
152 views
Is CQRS tied up to Event Sourcing?
I recently read a lot about CQRS and for me it seems like it's closely tied up to Event Sourcing.
But like this answer said http://stackoverflow.com/a/9217461/277067
For me Event SOurcing seems a bit ...
3
votes
2answers
1k views
Framework suggestion for CQRS and EventSourcing
Are there any other java frameworks for CQRS and EventSourcing other than www.axonframework.org? I am specifically looking for
Java based framework
Must support event sourcing
0
votes
1answer
128 views
Flexible entity models with CQRS and EventSourcing
Quoting from Rinat Abdullin's article:
CQRS and Event Sourcing also simplify implementation of the flexible
entity models with various custom fields and properties that are often
defined at ...
1
vote
1answer
249 views
Is it OK to create huge events in Event Sourcing?
We are using event sourcing and construct aggregates from stream of events.
I have 2 aggregates - A1 and A2. A1 is used as a template in order to create A2.
The size of A1 can be pretty big.
The ...
1
vote
2answers
301 views
Saga , Commands , events & ReadModel
I am currently writing my first saga and I am a bit puzzled with the read model. Let's explain it with an example :
I have three bounded context : programming, contractor and control. Each of them ...
6
votes
3answers
423 views
Why should the event store be on the write side?
Event sourcing is pitched as a bonus for a number of things, e.g. event history / audit trail, complete and consistent view regeneration, etc. Sounds great. I am a fan. But those are read-side ...
0
votes
2answers
145 views
Adding events to the beginning of an Rx observable using ReplaySubject - possible?
I am implementing a bus using Rx (reactive framework) and so far it looks good. The problem that I am facing right now is how to add events before the beginning of a stream.
To give more context, ...
4
votes
2answers
519 views
Is Reactive Extensions a good fit for a bus?
I have been using Rx for a little bit now to create an event bus (think CQRS/ES) within a single application, and it seems to work great. However, after surveying a bunch of different Event Sourcing ...
1
vote
2answers
507 views
EventStore & RavenDB Persistence JsonReaderException
Trying to wire up JOliver's EventStore with RavenDB and hit a snag.
I created a new DB in Raven called RavenEventStore.
The following is my wireup;
return Wireup.Init()
...
