Master Event Sourcing in Just 10 Minutes

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

КОМЕНТАРІ • 8

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

    Perfect explanation.

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

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

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

    Wonderfully stated, thank you

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

    clear and concise explanation.

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

  • @vivek.tiwary
    @vivek.tiwary Місяць тому +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.

  • @RaviChandraEnaganti
    @RaviChandraEnaganti Місяць тому

    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.