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.
Banking systems use event sourcing to track every transaction, allowing them to reconstruct account balances at any point in time.
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.”