Event Sourcing

advanced
software
Enhanced Content

Definition

Pattern of storing all changes to application state as a sequence of events. Like keeping a detailed diary of everything that happened instead of just the current situation.

Real-World Example

Banking systems use event sourcing to track every transaction, allowing them to reconstruct account balances at any point in time.

Cloud Provider Equivalencies

Event Sourcing is an application architecture pattern, not a single managed cloud service. It’s typically implemented using a durable event store (database or log), messaging/streaming for event distribution, and separate read models for queries. Cloud providers offer building blocks (streams, queues, databases) rather than a one-to-one “Event Sourcing service.”

Explore More Cloud Computing Terms