Event Source Architecture: Exploring Concepts with Code

Event Source Architecture: Exploring Concepts with Code

Chris Sonnenberg Architecture, Articles, Development Technologies & Tools Leave a Comment

Event Source is an implementation of the Single Source of Truth architecture. Event Sourcing, at its core, just stores events as an ordered sequence of state changes. Typically, there is an Event Store that houses multiple Event Streams. Each Event Stream is an ordered sequence of Events, with each Event being a state change for the system. Projections are just …