Master Event Sourcing in Just 10 Minutes

Поділитися
Вставка
  • Опубліковано 29 лис 2024

КОМЕНТАРІ • 8

  • @kaushilkundalia2197
    @kaushilkundalia2197 2 місяці тому +2

    Perfect explanation.

  • @rorycawley
    @rorycawley 2 місяці тому +1

    Wonderfully stated, thank you

  • @zain_x_alpha
    @zain_x_alpha 2 місяці тому +1

    Best and easy explanation, thanks for it and keep more videos like this✨

  • @kalpagarwal8291
    @kalpagarwal8291 2 місяці тому

    clear and concise explanation.

  • @vivek.tiwary
    @vivek.tiwary 2 місяці тому +1

    Nice video, could extend this concept to one more use case like taking snapshot of a VM or DB. What would be design considerations and how would we implement.

  • @Varuag89b
    @Varuag89b 2 місяці тому +3

    Great video, just 1 question where do we store this event log? In DataBase or some other preferred storage?

    • @ByteMonk
      @ByteMonk  2 місяці тому +1

      Good question! Event log is typically stored in a specialized Event Store rather than a traditional database. Event Stores are designed to handle the sequential and append-only nature of event logs. For simpler systems or specific use cases, events might be stored directly in a file system, for more complex/distributed apps some commonly used Event Stores include EventStoreDB and Kafka

  • @RaviChandraEnaganti
    @RaviChandraEnaganti 2 місяці тому +1

    Do we need to use different types of databases to store events and the Query store? What are some examples of the DB to be used for event store vs query store.