CQRS & Event Sourcing Code Walk-Through

  Рет қаралды 44,760

CodeOpinion

CodeOpinion

Күн бұрын

Пікірлер: 79
@CodeOpinion
@CodeOpinion 2 жыл бұрын
If you want a primer on what Event Sourcing is check out this video and a playlist talking about Event Sourcing, Projections, Snapshots, and more: kzbin.info/www/bejne/d4bNZYBjqNlmn8U
@dirtylabrat958
@dirtylabrat958 2 жыл бұрын
Thank you. You are amazingly clear in your explainations! No useless fillers and anecdotes, love that you just get right into the nitty gritty while everyone else seems to get lost in the nutter butter.
@CodeOpinion
@CodeOpinion 2 жыл бұрын
Thanks!
@SnOrfus
@SnOrfus 2 жыл бұрын
You’re my hero! This is the exact thing I’ve been looking for. Like the final piece of the puzzle in my mind! Thank you!
@CodeOpinion
@CodeOpinion 2 жыл бұрын
No problem 👍
@TheGuitarShawn
@TheGuitarShawn 2 жыл бұрын
Always great stuff! When I get a notification, I'm always eager to check out a new event sourcing video from you. Thanks!
@CodeOpinion
@CodeOpinion 2 жыл бұрын
Awesome, thank you!
@guava_dev
@guava_dev 2 жыл бұрын
Great video! I would love to see in more detail how you implement the projection side. Especially when adding a new projection to an existing system and having to replay events for current state
@CodeOpinion
@CodeOpinion 2 жыл бұрын
Great suggestion!
@codersworld2598
@codersworld2598 2 жыл бұрын
Hey @Derek, you're doing amazing. Thank you! Please add corresponding github repo link with all of your videos. Thanks Again.
@stefainex99ming
@stefainex99ming 3 күн бұрын
Hi, quick question 🙋 I wonder if CQRS needs to be separate the service into two standalone service. Or it can be sit within the same service but having two “handlers”? Cause then we don’t need to face the eventually consistent problem
@thedacian123
@thedacian123 2 жыл бұрын
So the projection mainly code updates the read database in turn of a business event?Thnks!
@CodeOpinion
@CodeOpinion 2 жыл бұрын
Yes the projection is updating the read DB.
@danallford8760
@danallford8760 8 ай бұрын
Event Sourcing and CQRS aren’t the same thing but almost always come as a package deal. ES is optimised for writes (no locking contention) so you’re always going to end up considering a specific, separate design for the reading side. So in reality you don’t do ES without CQRS. That’s why people see them as different sides to the same coin.
2 жыл бұрын
nice, I'm waiting for the source code to follow along
@CodeOpinion
@CodeOpinion 2 жыл бұрын
It's been added. Check out the community tab! Thanks again for your support!
@romanlunin386
@romanlunin386 10 ай бұрын
The only problem with this channel is that it's not that popular as it deserves to be.
@quicoll14
@quicoll14 2 жыл бұрын
You are the best out there! I just have one question. How do you ensure both databases are always sinchronized and no event was lost in the network? Thanks for your videos Derek!
@CodeOpinion
@CodeOpinion 2 жыл бұрын
Good Question. Keep track of the version of the stream in your projections. Your event stream will have a version which is can be used for optimistic concurrency. Include the version in the event so when you're can check your projection to make sure you haven't missed any messages. Also, if you're using an actual database, you'd leverage something like subscriptions. As an example, check out how EventStoreDB does it: developers.eventstore.com/clients/dotnet/5.0/subscriptions.html#volatile-subscriptions
@germanvalenciavargas9426
@germanvalenciavargas9426 Жыл бұрын
One question: which should be the response from the REST api to the UI after a command to create an entity is received? 200 OK 201 CREATED 202 ACCEPTED
@Lost_Man1999
@Lost_Man1999 2 жыл бұрын
GOOD explaining man , thank you
@CodeOpinion
@CodeOpinion 2 жыл бұрын
You're welcome!
@ToeShimmel
@ToeShimmel Жыл бұрын
Again such a fantastic video. Thank you :)
@CodeOpinion
@CodeOpinion Жыл бұрын
Glad you enjoyed it!
@MrSpasify
@MrSpasify 2 жыл бұрын
Thanks for the video! One question popped up in my mind. At around 12:15 in your video you say that you are fetching the item from the event store by applying all of the events. Why do you need to do this? - that seems like a waste of time (and potentially a very expensive thing to do, if there were many events for the item). At this point, you don't use the item for anything - you just store the "count increment" event and trigger the projections.
@CodeOpinion
@CodeOpinion 2 жыл бұрын
You want to build up current state to enforce invariants. It's only expensive if the event stream is really long, which generally isn't. If it is and designed correctly you can optimize by using snapshots. kzbin.info/www/bejne/m3KsnKKjes6XZ7s
@NamEspAce-ps4th
@NamEspAce-ps4th 5 ай бұрын
I don't get why there are 2 tables for the same entity. Should the database really have 2 tables for the same entity for presentation purposes ? Doesn't seem right
@gpthaoyugpt
@gpthaoyugpt 5 ай бұрын
好视频,有图有代码看着很清晰,感谢。
@evgenvb
@evgenvb 2 жыл бұрын
Hi, trying to implement CQRS+ES and i have a question: What are common approaches to handle async between write and read on client side? After sending a command how to notify client about projection update completion to run query safely? In my case i trying to develop "smart" WS gateway to implement "subscribing on changes with query run", but it will be nice to hear some best practices, thx.
@CodeOpinion
@CodeOpinion 2 жыл бұрын
It really depends on the context. You can use SignalR (websockets) or some type of push to the client. But it really depends on the context and where you're applying event sourcing. Users often expect to immediately see their changes, in a given context, so don't fight that. That may be something that's CRUD in a nature and you're event sourcing when you shouldn't.
@evgenvb
@evgenvb 2 жыл бұрын
@@CodeOpinion That's weak point of DDD + CQRS + ES popularization. Of cause if you dive deep into this you should know, that everything depends of context, but when you build software production flow with teams you want to give them some templates, or at least some generic abstract technology approaches. Clean architecture helps a lot, it gives bounds to put context-depended things, and devs are happy, but async write-read frontend - that`s is the problem that i can`t beat easily (
@CodeOpinion
@CodeOpinion 2 жыл бұрын
@@evgenvb This isn't just an issue with ES and Projections, this happens anytime you do any work asynchronously and you want to let the client know. Check out: kzbin.info/www/bejne/iqaUeHh_ndB8p7c
@bluex217
@bluex217 2 жыл бұрын
Thanks! Just to confirm if your command api needs to read the current state of the entity before insertion then youd still need to replay events ?
@CodeOpinion
@CodeOpinion 2 жыл бұрын
Yes, you're getting all the events and replaying them to build up current state so you can apply any invariants (business logic)
@programuoki-lt1465
@programuoki-lt1465 2 жыл бұрын
Im new to .NET core for web and not sure What stack should I use for simple Website with 3D model display and preview from database (Best Way for 3d Model store database not sure which one to pick). Maximum 50-100 models in my db.
@SuperJB1981
@SuperJB1981 2 жыл бұрын
Great video. Question, do you think CQRS / MediatR pattern makes sense using a single DB? I'm working on a prj right and have the liberty to implement Clean Architecture & CQRS. However, hosting (azure cloud) comes with it's costs (like any other cloud provider). Hosting / provisioning 2 DBs is more $$$ than 1. Plus all the extra local storage / complexity with Docker to run locally and run tests during builds. I'm thinking a single CosmosDB, applying the same principles explained here, but without projections and event sourcing. Just a different workflow for commands & 1 for queries, most likely use separate repositories all together. Make sense or wasting my time here 🤣? Sorry for the long post Love your content btw
@CodeOpinion
@CodeOpinion 2 жыл бұрын
Yes, CQRS isn't about having different databases. It's about separating the path between reads and writes. The ultimately can go to the same database.
@reynasebasti3635
@reynasebasti3635 Жыл бұрын
Can u pls implement with kafka, what do u think? And also video how to have consistency between reads n writes with segregated dbs how would u r update read DB after writes in write DB??
@derrick3534
@derrick3534 2 жыл бұрын
Love how u explain complex topics. I had a question. In the context of event sourcing whenever there is fault the solution is to replay back to the working state and analyze what happened. if u are using state machine or orchestration design, does that model eliminate the need to replay due to the fact that if there is fault, the state machine will not transition to the next state, thus preventing the need to look back in the event store. What are our thoughts?
@CodeOpinion
@CodeOpinion 2 жыл бұрын
If you persist an event to your event stream due to a bug, it happened, there's no turning back. At that point you'd have to handle that when replaying the event stream to get to current state, even if that puts you in to an invalid state. Likely what you would have is another compensating event to "fix" the error. You'll likely create an event that will "undo" or "void" the incorrect event.
@derrick3534
@derrick3534 2 жыл бұрын
@@CodeOpinion oh that's right. I forgot that I was actually doing a compensating transaction whenever the failed event is persisted to correct the issue. Thanks
@onuryardimci
@onuryardimci 2 жыл бұрын
Hi, thanks for very instructive videos. I have a couple question about this video. Sorry, if I'm missing some basics even I've checked your other videos. So, It seems that total count of an item is calculated in Projections Handler. Doesn't it mean business logic leaks out from the Aggregate Root? And in case of a new projection which requires total count, this logic would be duplicated, right?
@CodeOpinion
@CodeOpinion 2 жыл бұрын
I wouldn't view it as leaking business logic. You aren't enforcing any invariants in projections, simply using domain understanding to create the count based on the events. If a new projection required the total count, it could also contain that logic, yes. But nothing stopping it from being shared. Eg, having a projection that is purely for "stock count" that other queries or projections use.
@onuryardimci
@onuryardimci 2 жыл бұрын
@@CodeOpinion Ok, I understand; although the projection and the actual state of total count may diverge at any point of time, this won't break the application since all the validation and the mutations is being done by the aggregate root. However, this doesn't prevent the chance of an inconsistency. For instance, if i change the calculation logic of total count and I forget to apply this change in projection, data would be inconsistent. So, how about if I pass the whole aggregate root or just the total count invariant to the ItemsCheckedInToInventory event? Eventually, I have the current state at that point.
@RizaMarhaban
@RizaMarhaban 2 жыл бұрын
in minute 3 diagram, should the event be written first on the Event Store, then execute the event handler for projection. Not splitting it.
@m1dway
@m1dway 2 жыл бұрын
MVP vs MVP... lol
@CodeOpinion
@CodeOpinion 2 жыл бұрын
Yes. It's written to the event store first. You'd use a subscriptions to update the projections.
@m1dway
@m1dway 2 жыл бұрын
in terms of use, are you able to describe, when it's best to use event sourcing and when inbox/outbox pattern is enough? I can see similar concept here and inbox/outbox pattern could also be used to republish events.
@CodeOpinion
@CodeOpinion 2 жыл бұрын
Inbox/Outbox server different purposes than Event Sourcing. The Outbox is to solve the issue of not having a distributed transaction (2PC) with your db and message broker. The inbox is because of "at least once" you need to make your consumers idempotent as you may process the same message more than once. Event Sourcing is about how you store data, not about messaging (although you can).
@mehdihadeli
@mehdihadeli 2 жыл бұрын
Thanks for this useful video, I have a question, here you save read side data after saving data in your event store in same process (with advantage of transaction). What happens if we have multiple read side technologies like mongo and elastic? Here we can't use same in process transaction for handling failure on both data store. I know eventstore-db has a projection feature for this case (async subscriptions). But how could we handle it ourselves?
@CodeOpinion
@CodeOpinion 2 жыл бұрын
Yes, likely you'll updated your projections (read models) asynchronously. Meaning your projections will be eventually consistent with the event stream. Check out my video on ways to handle eventual consistency: kzbin.info/www/bejne/rXa4hYCrh7iNipI
@mehdihadeli
@mehdihadeli 2 жыл бұрын
@@CodeOpinion Thanks
@nicktech2152
@nicktech2152 2 жыл бұрын
What does the InventoryItemReository and why are you creating a new InventoryItem entity? Isn’t the whole point of Event Sourcing to avoid the Entity Based storage as a source of truth? For it looks like you’re storing your usual Entity via the repository, and then notify the write models. Shouldn’t you instead of this store the creation event?
@CodeOpinion
@CodeOpinion 2 жыл бұрын
The InventoryItem is the aggregate root. The constructor generates an InventoryItemCreated event. The repository isn't persisting the aggregate but the events it's creating.
@s91630277
@s91630277 2 жыл бұрын
On your diagram 2:18 event for querydb fires and in parallel is saving to eventstore db? Does it make sense? What if saving to eventstore db fails - we will have wrong projection in querydb. Maybe better re-emit event for querydb after save to eventstore db (eventstoredb subscription)?
@CodeOpinion
@CodeOpinion 2 жыл бұрын
No you likely don't want to be saving to your event store then trying to publish. This would require a distributed transaction/2PC. I mention this later in the video here: kzbin.info/www/bejne/a5Ldn55_etuegcU
@acegame1452
@acegame1452 2 жыл бұрын
Hi Derek. First of all amazing video as always. Second i wanted to ask a question. How would you manage in this case the event replay for reconstructing the projection database. As i understood from the code base, you recreate the current state of the aggregate root every time you read it from the event store, however since the events replayed are marked as not new, no new event is published for the handlers to capture. My question is: if I wanted to recreate the projection database from the current events I already have, how would I do it in this architecture. Thanks as always!
@CodeOpinion
@CodeOpinion 2 жыл бұрын
To be clear, in an aggregate root, you're replaying all the events from a stream to get to current state within the aggregate root, which ultimately you use against business logic. For projections, the intent is to always have a durable/persisted representation of the most recent event. When a new event is published, you consume that event and update your projection. So basically you're projection is constantly being kept into a current state as new events are created/published. If for some reason you want to rebuild a new or existing projection, you would request all the events from whatever streams you need to rebuild. If you haven't already, check out my post on projections: kzbin.info/www/bejne/mIW1m4Jsf7BnjdU
@acegame1452
@acegame1452 2 жыл бұрын
@@CodeOpinion Thanks for the answer, however I am afraid I did not phrase the question correctly. I was referring to the read model projection. In this case the read model is only being updated in real time and it is synced with the latest state. However how would I manage the event reply in the case when I want to generate a new read model projection or maybe fix a corruption in the projection. In the video you mentioned the problem is easier since it is an in-memory projection, however how would we manage a persistent one. Thanks and apologies for the long question.
@CodeOpinion
@CodeOpinion 2 жыл бұрын
To rebuild from scratch, you'd start with a blank read model them start reading the stream from index 0 and build up the projection again. This is often called a catch up subscription because the client keeps track of where in the stream it is. Once caught up you can move to a persistent subscription to be fed where you stopped and get pushed all the latest events as they happen.
@acegame1452
@acegame1452 2 жыл бұрын
@@CodeOpinion Amazing. Thank you for your help. Keep up with your amazing content.
@zeamessaoud
@zeamessaoud 2 жыл бұрын
Great work thanks Derek. In case i have a form to update a person informations i wish track only modified informations how to do that in ES in term of events ?
@zeamessaoud
@zeamessaoud 2 жыл бұрын
I found what i was looking for you've already answered the question in this kzbin.info/www/bejne/bF7Upoxmha-IhpY
@CodeOpinion
@CodeOpinion 2 жыл бұрын
Also check out this video about creating Task Based UIs: kzbin.info/www/bejne/epu9lqONp6Z-sK8
@zeamessaoud
@zeamessaoud 2 жыл бұрын
@@CodeOpinion Thank you
@kenjohnsiosan9707
@kenjohnsiosan9707 2 жыл бұрын
Thank for the walk-thru by the way can CQRS and ES be implemented on framework like Laravel?
@CodeOpinion
@CodeOpinion 2 жыл бұрын
I don't use PHP but there's really no need for a framework to apply CQRS or ES really.
@kenjohnsiosan9707
@kenjohnsiosan9707 2 жыл бұрын
@@CodeOpinion Appreciate it a lot. keep posting vids. it really helps for someone like me who just new to implementation of this architecture. 😉
@임창수-c7c
@임창수-c7c 2 жыл бұрын
what database do you recommend as eventstore?
@CodeOpinion
@CodeOpinion 2 жыл бұрын
EventStoreDB, which is built for Event Sourcing. www.eventstore.com/ Note, they do sponsor my channel but that doesn't affect me referring them.
@MegaAnufriev
@MegaAnufriev 2 жыл бұрын
Does a command handling produce only one event?
@CodeOpinion
@CodeOpinion 2 жыл бұрын
No, it can produce more than one.
@MegaAnufriev
@MegaAnufriev 2 жыл бұрын
@@CodeOpinion So while handling of a command, an event can be produced then applied to the state, then another event can be produced and applied to the state. As a result of processing one command zero or more events can be produced and applied to the state. Right?
@chessmaster856
@chessmaster856 11 ай бұрын
Why writes are called commands and Not writes. A command is Any action if you speak plain English? Sp query is also command. Just say write and read fo what they are
@CodeOpinion
@CodeOpinion 11 ай бұрын
Writes implies changing state. Eg, making a write to a database. However a command is just performing some type of of action with a side-effect. Sending an email is a command,
@chessmaster856
@chessmaster856 11 ай бұрын
@@CodeOpinion that is not true. We are talking about saving data and reading it. Bo one is interested in sending email here
@chessmaster856
@chessmaster856 11 ай бұрын
Show me a case of cqrs that never writes and sends email and reads
@rimbik1
@rimbik1 2 жыл бұрын
no, I did not like asvu missed replay
Don't Let the Internet Dupe You, that's NOT Event Sourcing
13:14
CodeOpinion
Рет қаралды 10 М.
Event Sourcing Example & Explained in plain English
18:23
CodeOpinion
Рет қаралды 117 М.
REAL 3D brush can draw grass Life Hack #shorts #lifehacks
00:42
MrMaximus
Рет қаралды 12 МЛН
"كان عليّ أكل بقايا الطعام قبل هذا اليوم 🥹"
00:40
Holly Wolly Bow Arabic
Рет қаралды 15 МЛН
Всё пошло не по плану 😮
00:36
Miracle
Рет қаралды 3,7 МЛН
Event Sourcing and CQRS Explained |  When should you use them?
12:36
Sagas: Event Choreography & Orchestration (NServiceBus)
15:18
CodeOpinion
Рет қаралды 40 М.
Event Sourcing do's and don'ts
10:33
CodeOpinion
Рет қаралды 15 М.
I'd rather read 50 lines than "Extract Method" Refactoring
9:16
Getting Started with Event Sourcing in .NET
37:07
Nick Chapsas
Рет қаралды 58 М.
Master Event Sourcing in Just 10 Minutes
10:48
ByteMonk
Рет қаралды 4,1 М.
Is a REST API with CQRS Possible?
16:46
CodeOpinion
Рет қаралды 35 М.
Should you use the Repository Pattern? With CQRS, Yes and No!
10:27
Do you really need that abstraction or generic code? (YAGNI)
7:07
REAL 3D brush can draw grass Life Hack #shorts #lifehacks
00:42
MrMaximus
Рет қаралды 12 МЛН