Upgrade to Pro — share decks privately, control downloads, hide ads and more …

You Attended Talk: an introduction to event sourcing

carnage
October 03, 2015

You Attended Talk: an introduction to event sourcing

Imagine for a moment you work for a large online retailer specialising in household goods. One morning, the head of marketing comes to you and says "I've had this great idea we're going to send discount vouchers to anyone who's changed their address in the past 3 months; people who've recently moved are more likely to be buying new furniture. Could you retrieve a list of all these customers?" You explain to him your systems only store a customers current address and doesn't record when it was last changed, a new feature is added to the backlog and the head of marketing leaves a little disappointed.

What if you could build a system which was able to answer this kind of question without knowing it up front? A possible solution is to use event sourcing, being able to go back to any previous state of your data is just one advantage of using event sourcing in your application. Event sourcing is a total paradigm shift from the more traditional model of storing an application's current state and can appear to be a very unnatural way to think about and build a system. In this talk I'm going to show you examples of why event sourcing can be a superior model and how to go about building an event sourced system in PHP.

Example code: https://github.com/carnage/broadway-bowling

carnage

October 03, 2015
Tweet

More Decks by carnage

Other Decks in Programming

Transcript

  1. Deleting data LineItem table id order id product code quantity

    1 1 PK00001 3 2 1 PK00002 1 3 2 PK00002 1 4 3 PK00007 4 5 4 PK00003 2 6 4 PK00005 6 4
  2. Deleting data LineItem table id order id product code quantity

    1 1 PK00001 3 3 2 PK00002 1 4 3 PK00007 4 5 4 PK00003 2 6 4 PK00005 6 5
  3. Deleting data LineItem table id order id product code quantity

    deleted 1 1 PK00001 3 0 2 1 PK00002 1 0 3 2 PK00002 1 0 4 3 PK00007 4 0 5 4 PK00003 2 0 6 4 PK00005 6 0 6
  4. Deleting data LineItem table id order id product code quantity

    deleted 1 1 PK00001 3 0 2 1 PK00002 1 1 3 2 PK00002 1 0 4 3 PK00007 4 0 5 4 PK00003 2 0 6 4 PK00005 6 0 7
  5. Editing data LineItem table id order id product code quantity

    deleted 1 1 PK00001 3 0 2 1 PK00002 1 1 3 2 PK00002 1 0 4 3 PK00007 4 0 5 4 PK00003 2 0 6 4 PK00005 6 0 8
  6. Editing data LineItem table id order id product code quantity

    deleted 1 1 PK00001 2 0 2 1 PK00002 1 1 3 2 PK00002 1 0 4 3 PK00007 4 0 5 4 PK00003 2 0 6 4 PK00005 6 0 9
  7. Editing data LineItem table id order id product code quantity

    deleted version 1 1 PK00001 3 0 1 2 1 PK00002 1 1 1 3 2 PK00002 1 0 1 4 3 PK00007 4 0 1 5 4 PK00003 2 0 1 6 4 PK00005 6 0 1 10
  8. Editing data LineItem table id order id product code quantity

    deleted version 1 1 PK00001 3 0 1 2 1 PK00002 1 1 1 3 2 PK00002 1 0 1 4 3 PK00007 4 0 1 5 4 PK00003 2 0 1 6 4 PK00005 6 0 1 1 1 PK00001 2 0 2 11
  9. Should I use Event sourcing? • Complex to implement •

    Development overhead • Less understanding 47
  10. Should I use Event sourcing? • Complex to implement •

    Development overhead • Less understanding • Hard to retofit 48