Event Sourcing Explained

Поделиться
HTML-код
  • Опубликовано: 13 окт 2024

Комментарии • 24

  • @jenreiss3107
    @jenreiss3107 9 месяцев назад +1

    yeahh this is an amazing way for proficient programmers to learn more about the architecture behind larger software systems! Thanks!

  • @fraineri
    @fraineri Год назад +3

    I just discover your channel today and the content is awesome!
    I would love to see what other topics you will talk about in the future.
    Keep it up!

    • @drawingboxes
      @drawingboxes  Год назад +1

      Thank you! I'm glad you like it. I'm working on some videos in the agile and DevOps areas atm, and I've got another idea for content I hope to experiment with in the new few weeks - watch this space!

  • @edgeeffect
    @edgeeffect Месяц назад

    Excellent! I've never really worked on any systems where Eventual Consistency is a thing... and I've, obviously, heard the term bandied about a lot... but never really known how it works.... until now! :)

  • @Legion739
    @Legion739 Год назад +1

    Really great content, best explenation I could find out there, and makes it very clear

  • @SarcSaus
    @SarcSaus 3 месяца назад

    For our new system I actually implemented an event-sourced system backed by SQL using efcore; it's typed, uses automatic JSON versioning and upgrade-on-read, as well as a strongly-consistent projections system where the projection state goes in the same transaction as the event append. Performance has actually been pretty great, and the way it makes rearranging the read model as requirements change has been absolutely amazing, I don't think I'd want to go back to a regular ORM.

  • @jnjarun
    @jnjarun 2 месяца назад

    Best explanation with short videos. I really like it. Understood well about DDD.. Please post a video related AWS migration from off-premises to ON premises for legacy application ex: Java application

  • @jaimalad2902
    @jaimalad2902 Год назад +5

    Great explanation❤. Can you make one video explaining how to implement it?

    • @drawingboxes
      @drawingboxes  Год назад +4

      Thanks! I'm not sure how to make a 'boxes and arrows' style video of that, but perhaps I can write up a post and make an example project soon :)

  • @urldog8876
    @urldog8876 Год назад

    I'm addicted to these! Keep it up!

  • @Zainjerr
    @Zainjerr 3 месяца назад

    You just earned a sub! Awesome explanation mate

  • @gianlucalocri
    @gianlucalocri Год назад

    Simply asesome! Thanks you!
    You deserve lot more subscribers!

  • @douglasemsantos
    @douglasemsantos Год назад

    Great video! Thanks for sharing!

  • @TheHawkeyede
    @TheHawkeyede 5 месяцев назад

    exceptional well explained!

  • @fredimachadonet
    @fredimachadonet Год назад +1

    Awesome content! Thank you

  • @nadzhafox
    @nadzhafox 10 месяцев назад

    Very interesting to know how implements events sourcing? Using query manager for events? Save event in db after creation or after consuming?
    From front end dev I remember saga pattern for complex calculation of events, mb something similar using in backend system;
    P.S. great video as always; You helping me moving forward in my career!

    • @drawingboxes
      @drawingboxes  10 месяцев назад +1

      Glad you're enjoying the videos!
      There's no single correct way to implement event sourcing, it's all trade offs, so its worth thinking about whether you'd prefer consistency, performance, or resiliency

  • @CristianMolina
    @CristianMolina Год назад

    this videos are gold!

  • @JustCode512
    @JustCode512 8 месяцев назад

    Thank you man may rate 10/10

  • @b03tz
    @b03tz Год назад +1

    Just a simple question: but what if you store the event index together with the snapshot. Then you can read the snapshot + events from that index forward and apply them to the snapshot to get the current truth. You would only have to read a few events then, just everything from the snapshot upwards and apply them.

    • @drawingboxes
      @drawingboxes  Год назад +1

      Yes, absolutely, great thinking! You could store a snapshot at regular intervals and just replay the events that have happened since that snapshot was taken. Just as long as the snapshots could all be destroyed and re-built from the full list of events if needed

    • @b03tz
      @b03tz Год назад +1

      @@drawingboxes Yea, the events are the truth not the snapshot. Gotcha!

  • @sultan_of_oop
    @sultan_of_oop Год назад

    what books do you recommend to read further?

  • @teda7365
    @teda7365 Год назад

    P r o m o s m