event-sourcing Questions
4
I have been trying to figure out the preferred way of doing "Event Sourcing" while using the NestJS CQRS recipe (https://docs.nestjs.com/recipes/cqrs).
I've been looking at the NestJS fra...
Bautram asked 23/12, 2018 at 18:6
3
I am using Kafka for Event Sourcing and I am interested in implementing sagas using Kafka.
Any best practices on how to do this? The Commander pattern mentioned here seems close to the architecture...
Vo asked 8/5, 2017 at 10:21
5
Solved
What is the difference between CQRS (Command Query Responsibility Segregation) and Event Sourcing?
I believe Event Sourcing is a type of CQRS. What distinguishes each, and what makes Event Sourcin...
Insurer asked 1/11, 2017 at 5:38
2
I was looking in to event base architecture and came to know about two architecture
Event Sourcing & Event Driven Architecture.
My understanding is following
Event driven :
used for distribute...
Redwine asked 11/2, 2022 at 16:39
2
Solved
I'm working with event sourced data where all of the important fields are combined to a JSONB column and many of the keys are missing from most of the database rows.
I would want to get:
Aggregate...
Kinkajou asked 25/7, 2023 at 18:2
5
Solved
I know that CQRS can be implemented with or without event sourcing, but does it work the other side? Does event sourcing without CQRS make sense? If so, how it should be implemented?
Pt asked 3/7, 2018 at 17:54
1
I am trying to learn about microservices, and am confused about which approach is better between service orchestration and event sourcing ( service choreography) . There seems to be very few framew...
Nautch asked 24/1, 2018 at 17:13
3
Solved
OpenAPI is good for RESTful services and at the moment, I'm hacking it to do it for asynchronous messaging system (specifically Kafka) by using POST to a /topic so that I can use redoc do create a ...
Thundering asked 2/12, 2019 at 17:7
2
I'm currently evaluating options for designing/implementing Event Sourcing + CQRS architectural approach to system design. Since we want to use Apache Kafka for other aspects (normal pub-sub messag...
Hammering asked 8/11, 2019 at 9:24
4
I am trying to implement event sourcing/CQRS/DDD for the first time, mostly for learning purposes, where there is the idea of an event store and a message queue such as Apache Kafka, and you have e...
Renell asked 24/6, 2019 at 1:44
7
Solved
Although I've come across Kafka before, I just recently realized Kafka may perhaps be used as (the basis of) a CQRS, eventstore.
One of the main points that Kafka supports:
Event capturing/storing...
Newsome asked 17/7, 2013 at 19:22
1
I'm working on an application for managing bank credit cards.
CQRS and Event Sourcing architecture was chosen for the app.
The most important aggregate in the app is CreditCard which controls the c...
Recommendation asked 14/11, 2020 at 18:18
4
When we talk about sourcing events, we have a simple dual write architecture where we can write to database and then write the events to a queue like Kafka. Other downstream systems can read those ...
Terza asked 26/1, 2019 at 15:7
2
I am interested in how others have handled a Read Side DB update failure in CQRS/Event Sourcing eventually consistent systems.
I have such a system that could append an event to my event store, an...
Knuckleduster asked 12/7, 2018 at 15:44
2
I am just starting with the CQRS, Event Sourcing. While examining many frameworks, I have realized that one of the thing most of the frameworks assumed that our application is modelled based on the...
Riffraff asked 24/1, 2022 at 14:36
2
Solved
So we have a couple of lambdas that listen to changes on the db, in every lambda we had to filter in the beginning because this particular lambda don't care about all changes just a particular one....
Motorbus asked 3/2, 2021 at 10:14
3
Solved
I am currently working on a monolithic system which I would like to bring into the modern day and incorporate DDD and CQRS. I have been presented with a request to re-write the importing mechanism ...
Tic asked 26/4, 2017 at 16:54
4
Solved
As a software project built on an event sourcing architecture evolves, the event schema (or event types) are among the things most likely to change over time.
One of the benefits event sourcing arc...
Metastasize asked 1/2, 2018 at 14:10
3
Solved
Could any one explain why there are 2 actual versions of EventStore (20.6.1 and 5.0.9)?
What is the difference between them ?
What version for what goals should we use?
Altdorf asked 21/11, 2020 at 3:53
3
Solved
As far as my little current experience allows me to understand, one of the core concepts about "microservice" is that it relies on its own database which is independent from other microservices.
D...
Lesser asked 27/9, 2018 at 20:8
2
Solved
The situation is as follows. There are three services, one service is event sourced and publishes integration or notification events (outbox pattern) to the other two services (subscribers) using a...
Synonymize asked 23/12, 2020 at 13:27
2
Solved
I am playing with EventStore. As a .NET user I prefer Windows as OS, only that I have home edition. In order to install Docker I need Windows Proffessional Edition - and I don't have it ... it's ou...
Polder asked 9/12, 2020 at 21:21
2
Solved
Presumably we could resurrect state by applying the same set of commands, so why not simply store commands rather than events?
Banket asked 1/2, 2013 at 22:44
3
Solved
I've read this nice post from Jonathan Oliver about handling out of order events.
http://blog.jonathanoliver.com/cqrs-out-of-sequence-messages-and-read-models/
The solution that we use is to de...
Kahn asked 20/11, 2016 at 11:15
4
I'm creating a tiny event-sourcing-style function app, where every invocation of a function will write an event to table storage. An example of such an event would be:
+------------+--------------...
Potsdam asked 9/7, 2019 at 17:24
1 Next >
© 2022 - 2025 — McMap. All rights reserved.