event-sourcing Questions
2
I am dipping my feet into event sourcing pattern and trying to make sense of aggregates.I have read a few blogs and now I am more confused than ever before.
From what I inferred aggregates should ...
Isogamy asked 23/4, 2018 at 15:50
2
In the current plan, incoming commands are handled via Function Apps, resulting in Events being sent to an Event Hub, and then materializing the views
Someone is arguing that instead of storing ev...
Bryanbryana asked 13/7, 2019 at 8:28
2
Solved
I'm looking for an advice related to the proper way of implementing a rollback feature in a CQRS/event-sourcing application.
This application allows to a group of editors to edit and update some ed...
Algophobia asked 30/1, 2018 at 22:58
4
Given service A (CMS) that controls a model (Product, let's assume the only fields that it has are id, title, price) and services B (Shipping) and C (Emails) that have to display given model what s...
Conk asked 28/2, 2020 at 12:38
2
Solved
In CQRS / ES based systems, you store events in an event-store. These events refer to an aggregate, and they have an order with respect to the aggregate they belong to. Furthermore, aggregates are ...
Genoa asked 4/2, 2020 at 4:44
3
In typical DDD architecture we have 3 layers:
Domain - no references
Application - it has reference to Domain layer
Infrastructure - it has reference to Domain layer
(+ Web / UI project)
Domain mod...
Britannic asked 26/6, 2019 at 14:8
1
Solved
What is event driven design and Domain driven design?
What are the specific benefits using of Domain driven design, event driven design in MicroServices.
Censer asked 10/1, 2020 at 5:21
0
I am making an application which will need to use NestJS' CQRS module, as the requirements naturally lend themselves to that pattern.
Updates to the application logic are expected to be frequent a...
Chippewa asked 25/11, 2019 at 10:40
6
Solved
Besides missing some of the benefits of Event Sourcing, are there any other drawbacks to adapting an existing architecture to CQRS without the Event Sourcing piece?
I'm working on large applicatio...
Moureaux asked 8/2, 2012 at 18:56
6
Solved
If I were using an RDBMS (e.g. SQL Server) to store event sourcing data, what might the schema look like?
I've seen a few variations talked about in an abstract sense, but nothing concrete.
For exa...
Supermundane asked 15/8, 2011 at 12:44
1
Solved
I'm looking into the possibility of adopting the concept of (root) aggregates from domain-driven design in a system without an event store. However, the more I discover about the two, the more it f...
Luvenialuwana asked 10/7, 2019 at 21:21
1
Solved
This is a follow-up question to my issue outlined here.
The Gateway serves as an entry point to the application, to which every request from the client is made. The gateway then allocates the requ...
Hepcat asked 18/6, 2019 at 17:14
1
Solved
I was wondering which of my two methods is more appropriate, or is there event another one?
(1) Direct
Direct communication between GATEWAY and μSERVICE A
UI sends HTTP request to GATEWAY
GATE...
Mabe asked 16/6, 2019 at 20:42
4
Solved
EventSourcing works perfectly when we have particular unique EntityID but when I am trying to get information from eventStore other than particular EntityId i am having tough time.
I am using CQRS...
Assentor asked 13/7, 2015 at 14:34
2
I'm researching about CQRS pattern and our team wants to develop a system based on CQRS in PHP.
I know we can simulate event system in PHP, but I found that CQRS implements better/easier if the p...
Sutphin asked 14/5, 2018 at 6:29
5
Solved
Event sourcing and CQRS is great because it gets rids developers being stuck with one pre-modelled database which the developer has to work with for the lifetime of the application unless there is ...
Klagenfurt asked 22/10, 2015 at 11:14
1
I am having trouble getting my head around how I would support timeseries/temporal data in DDD and how it would be handled on the write side using CQRS. Ultimately I would like to find a solution t...
Writing asked 19/3, 2015 at 13:40
3
I'm designing an Event Store on AWS and I chose DynamoDB because it seemed the best option. My design seems to be quite good, but I'm facing some issues that I can't solve.
**The design
Events ar...
Embryonic asked 19/4, 2019 at 13:57
8
Solved
Let's take a simple "Account Registration" example, here is the flow:
User visit the website
Click the "Register" button and fill out the form, click the "Save" butto...
Pax asked 29/2, 2012 at 8:47
5
Since a couple of days I've been trying to figure it out how to inform to the rest of the microservices that a new entity was created in a microservice A that store that entity in a MongoDB.
I wan...
Chimney asked 21/3, 2016 at 17:25
6
Solved
I want to setup a small event sourcing lib.
I read a few tutorials online, everything understood so far.
The only problem is, in these different tutorials, there are two different database strateg...
Kvass asked 23/2, 2015 at 5:24
1
Solved
I'm new to Mass Transit and I would like to understand if it can helps with my scenario.
I'm building a sample application implemented with a CQRS event sourcing architecture and I need a service b...
Mantelet asked 5/3, 2019 at 19:47
2
Solved
I am building Microservices. One of my MicroService is using CQRS and Event sourcing. Integration events are raised in the system and i am saving my aggregates in event store also updating my read ...
Libriform asked 21/2, 2019 at 23:25
6
Solved
I'm implementing a project using CQRS and Event Sourcing. I realized that my commands and my events are nearly always the same.
Let's say I have a command CreatePost :
public class CreatePost imp...
Heterogenetic asked 27/7, 2017 at 13:53
1
Solved
Greg Young, author of Event Store, defined a while ago the correlation ID to reference the root cause and the causation ID to reference the direct cause of a message.
Therefore you should be able ...
Whoops asked 12/12, 2018 at 10:23
© 2022 - 2025 — McMap. All rights reserved.