Practical Event Sourcing with Marten and .NET - Oskar Dudycz - NDC Oslo 2023

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

ความคิดเห็น • 8

  • @sgwong513
    @sgwong513 11 หลายเดือนก่อน +3

    thanks, this really teach me how event sourcing works in 1 hour. I wanted to learn event sourcing for some time but this video really show how it works practically.

  • @georgesotiropoulos9935
    @georgesotiropoulos9935 11 หลายเดือนก่อน +2

    great lecture. bravo. wish these advanced techniques where available in java

  • @JosiahWarren
    @JosiahWarren ปีที่แล้ว

    Thanks for the lecture. Of cource there is strong consistency when you have a single replica. And evrything has to commit in the same db server. Eventual consistency is not only about that. I suggest Searching for "distributed transactions and crdts". There are some nice lectures by Martin Kleppmann

    • @event-driven
      @event-driven ปีที่แล้ว +1

      Could you point to the place where I said that there's something wrong with eventual consistency? 🙂

    • @JosiahWarren
      @JosiahWarren ปีที่แล้ว

      ​@@event-driven i must admit you are correct.

    • @event-driven
      @event-driven ปีที่แล้ว

      ​@@JosiahWarren great! 🙂 Btw. Martin Kleppmann's "Designing Data-Intensive Applications" is one of my favourite books. Highly recommended to everyone.

  • @mikeeshva9744
    @mikeeshva9744 2 หลายเดือนก่อน

    If you put every event in one table you end with many locks on this table. And many locks means a bottleneck. Yes it's append only but RDBMS knows nothing about it. I better use NATS, EventStoreDB or even Kafka (if aggregate instances will not be a lot) to store events. At least you have to spread streams by separate tables by stream type.
    I also do not so like your approach with separating logic and data in an object-oriented language like C#. Yes sometimes functional style is useful but not in this case.

  • @0w784g
    @0w784g 2 หลายเดือนก่อน

    All ideas look great when the example is a glorified todo list. If only real world software were that simple.