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 (often a database or log), plus messaging/streaming services and consumers to build read models. All major clouds provide building blocks (streams, queues, databases), but none has a one-click “Event Sourcing” service.