Serdar Hamzaoğulları c6354c48bb - removed optional classes and interfaces in order to simplify the example
- final fields are marked as final
- removed unnecessary temp variables
- added private constructor for not instantiated static class AccountAggregate
- path of te test file is corrected
2017-09-02 21:52:02 +03:00
..
2017-08-06 22:51:43 +03:00
2017-08-13 01:36:52 +03:00

layout, title, folder, permalink, categories, tags
layout title folder permalink categories tags
pattern Event Sourcing event-sourcing /patterns/event-sourcing/ Architectural
Java
Difficulty Intermediate
Performance

Intent

Instead of storing just the current state of the data in a domain, use an append-only store to record the full series of actions taken on that data. The store acts as the system of record and can be used to materialize the domain objects. This can simplify tasks in complex domains, by avoiding the need to synchronize the data model and the business domain, while improving performance, scalability, and responsiveness. It can also provide consistency for transactional data, and maintain full audit trails and history that can enable compensating actions.

alt text

Applicability

Use the Event Sourcing pattern when

  • You need very high performance on persisting your application state even your application state have a complex relational data structure
  • You need log of changes of your application state and ability to restore a state of any moment in time.
  • You need to debug production problems by replaying the past events.

Real world examples

Credits