CQRS & Event Sourcing Code Walk-Through

Поділитися
Вставка
  • Опубліковано 25 лип 2024
  • Want to see an example of how CQRS & Event Sourcing work together? Here's a code walk-through that illustrates sending commands to your domain that stores Events in an Event Store. The Events are then published to Consumers that updated Projections (read models) that are then consumed by Queries. This is the stereotypical set of patterns used when using CQRS and Event Sourcing together.
    🔗 EventStoreDB
    eventsto.re/codeopinion
    🔔 Subscribe: / @codeopinion
    💥 Join this channel to get access to source code & demos!
    / @codeopinion
    🔥 Don't have the JOIN button? Support me on Patreon!
    / codeopinion
    📝 Blog: codeopinion.com
    👋 Twitter: / codeopinion
    ✨ LinkedIn: / dcomartin
    0:00 Intro
    3:39 Command & Event Sourcing
    7:11 Projection
    10:26 Query
    #softwarearchitecture #eventsourcing #cqrs
  • Наука та технологія

КОМЕНТАРІ • 78

  • @CodeOpinion
    @CodeOpinion  2 роки тому +4

    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: ua-cam.com/video/AUj4M-st3ic/v-deo.html

  • @dirtylabrat958
    @dirtylabrat958 2 роки тому +9

    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.

  • @SnOrfus
    @SnOrfus 2 роки тому +5

    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!

  • @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!

  • @guava_dev
    @guava_dev 2 роки тому +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

  • @ToeShimmel
    @ToeShimmel Рік тому

    Again such a fantastic video. Thank you :)

  • @Lost_Man1999
    @Lost_Man1999 2 роки тому

    GOOD explaining man , thank you

  • @codersworld2598
    @codersworld2598 2 роки тому +1

    Hey @Derek, you're doing amazing. Thank you! Please add corresponding github repo link with all of your videos. Thanks Again.

  • @user-ds1mj9op2u
    @user-ds1mj9op2u 2 місяці тому

    好视频,有图有代码看着很清晰,感谢。

  • @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??

  • @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.

  • @quicoll14
    @quicoll14 2 роки тому +1

    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 роки тому +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

  • @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).

  • @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: ua-cam.com/video/5aznkIEvkKc/v-deo.html

  •  2 роки тому +1

    nice, I'm waiting for the source code to follow along

    • @CodeOpinion
      @CodeOpinion  2 роки тому +1

      It's been added. Check out the community tab! Thanks again for your support!

  • @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 роки тому +1

      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.

  • @thedacian123
    @thedacian123 2 роки тому +1

    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.

  • @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 роки тому +1

      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: ua-cam.com/video/wEUTMuRSZT0/v-deo.html

    • @mehdihadeli
      @mehdihadeli 2 роки тому

      @@CodeOpinion Thanks

  • @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 роки тому +1

      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

  • @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 ua-cam.com/video/6-quY0PJUP4/v-deo.html

    • @CodeOpinion
      @CodeOpinion  2 роки тому +1

      Also check out this video about creating Task Based UIs: ua-cam.com/video/DjZepWrAKzM/v-deo.html

    • @zeamessaoud
      @zeamessaoud 2 роки тому

      @@CodeOpinion Thank you

  • @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 роки тому +1

      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: ua-cam.com/video/bTRjO6JK4Ws/v-deo.html

    • @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 роки тому +1

      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.

  • @germanvalenciavargas9426
    @germanvalenciavargas9426 10 місяців тому

    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

  • @kenjohnsiosan9707
    @kenjohnsiosan9707 2 роки тому

    Thank for the walk-thru by the way can CQRS and ES be implemented on framework like Laravel?

    • @CodeOpinion
      @CodeOpinion  2 роки тому +1

      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. 😉

  • @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. ua-cam.com/video/eAIkomEid1Y/v-deo.html

  • @bluex217
    @bluex217 Рік тому

    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  Рік тому +1

      Yes, you're getting all the events and replaying them to build up current state so you can apply any invariants (business logic)

  • @evgenvb
    @evgenvb 2 роки тому +1

    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: ua-cam.com/video/Tu1GEIhkIqU/v-deo.html

  • @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 роки тому +1

      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.

  • @danallford8760
    @danallford8760 5 місяців тому

    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.

  • @user-fh4xo2pc2d
    @user-fh4xo2pc2d 2 роки тому

    what database do you recommend as eventstore?

    • @CodeOpinion
      @CodeOpinion  2 роки тому +1

      EventStoreDB, which is built for Event Sourcing. www.eventstore.com/
      Note, they do sponsor my channel but that doesn't affect me referring them.

  • @romanlunin386
    @romanlunin386 7 місяців тому

    The only problem with this channel is that it's not that popular as it deserves to be.

  • @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 роки тому +1

      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.

  • @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.

  • @NamEspAce-ps4th
    @NamEspAce-ps4th 2 місяці тому

    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

  • @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?

  • @rimbik1
    @rimbik1 2 роки тому

    no, I did not like asvu missed replay

  • @chessmaster856
    @chessmaster856 8 місяців тому

    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  8 місяців тому

      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 8 місяців тому

      @@CodeOpinion that is not true. We are talking about saving data and reading it. Bo one is interested in sending email here

    • @chessmaster856
      @chessmaster856 8 місяців тому

      Show me a case of cqrs that never writes and sends email and reads