Tag: event-sourcing
Browse 9 practical software engineering resources tagged with "event-sourcing". Discover code recipes, design patterns, documentation templates, and in-depth guides to help you build, deploy, and maintain production-ready solutions involving event-sourcing. Each resource is written for engineers who ship real systems, with copy-paste examples and practical trade-offs.
Event Sourcing
Event sourcing stores the state of a system as a sequence of events rather than the current state. It enables auditability, temporal queries, and flexible projections, but introduces complexity in event versioning, schema evolution, and snapshots.
The resources below cover event stores, projections, snapshots, CQRS pairs, idempotency, and replay strategies. Each guide explains how to implement event sourcing without overengineering the domain.
Every resource includes clear explanations, copy-paste code, and practical warnings. Use them to make informed decisions, avoid production pitfalls, and speed up your delivery. If you are just getting started, read the beginner-friendly articles first; if you are experienced, jump straight to the advanced patterns and architecture guides. New resources are added regularly, so bookmark this page and check back for the latest patterns.
Implement Event Sourcing in a Relational Database
Build event sourcing in a relational database. Store immutable events, project read models, and use...
Implement Event Sourcing with CQRS in Python
Build an event-sourced system with CQRS separation using Python, event store persistence,...
Event Sourcing Pattern
Store the state of an application as a sequence of events rather than storing only the current...
Serverless Event Sourcing Pattern
Store function state as an append-only event log so workflows can be replayed, audited, and...
Event Sourcing and CQRS: Event Store, Projections
Master event sourcing and CQRS: event store design, aggregate roots, projections, read models,...
CQRS + Event Sourcing — Combined Guide
A practical guide to combining CQRS and Event Sourcing: separating read and write models,...
CQRS — Command Query Responsibility Segregation
A complete guide to CQRS: separate read and write models to optimize performance, scalability, and...
Event Sourcing — State as a Sequence of Events
A detailed analysis into Event Sourcing: persist state changes as events, reconstruct aggregates...
Complete Guide to Event-Driven Systems
Design and operate event-driven backends. Covers event sourcing, CQRS, sagas, outbox pattern,...