New version!

A new version of this website is available at architectural-patterns.net.

In most cases you are just interested in the current state of your data. There are applications, however, where previous states are just as important, and you need to be able to navigate from one state to another, by code alone.

Event sourcing is used when the events that lead to the current state of the data are just as important as the current state itself is.

Examples

  • Version control systems (source code)
  • Word processor (for undo / redo)
  • Database transaction logs (for master/slave synchronization, a.o.)

Where does it come from?

  • Altough the concept itself is much older, the current ideas about architecture originate from about 2006 and come from Greg Young.

    When should you use it?

  • If logging or auditing is (very) important
  • If you want to be able to backtrack to a previous state, or work with different states in parallel.

    How does it work?

    Every action performed by the system is modelled as an event and written to an event store (event log). This store only changes by this adding of events. Events are not removed or modified after they're added. Event takes the form of a diff (difference) (no: set account balance to 110 euro; yes: increase account balance with 10 euro).

    Since a log of events itself does not make a state, and users need state to interact with a system, the system needs to build a current state from the event log. In the simplest case, a single state is updated each time a new event is added. In a more elaborate case, the system has many views on the same event log, and these are updated asynchronously (as is the case in CQRS).

    The system may have the ability to tag some event. If so, the system provides lists of tags and the user may be able to revert the system to the state labeled with this tag.

    This picture shows the events in the event source. The red flag is the tag that points to the current event. The state of the system reflects all the events up to this point.

    In the second picture a branch has been created starting with event #2. The client that uses the system is working on this branch and has created some events #4, #5, and #6 that exist parallel to the main branch. The state of this client reflects all events up to event #5. At some later state these branches may need to be merged into one again.

    Problems

  • When the event log has become corrupted, it must be restored with extra "restore" events. The event log should not be modified.
  • When the event source consists of multiple branches, these will need to be mergable. Merging branches may cause conflicts that are impossible to resolve automatically.

    Common implementation techniques

    • The event log may be implemented in various ways. If events need to be queried, an index may be needed.
    • As a notable exceptional case, the version control system Git does not store diffs, it stores all past states of the data (in a highly compressed manner). Diffs are calculated from the states.

    Links

  •