2 个仓库
Techniques for ensuring data integrity across distributed services using event-driven patterns.
Distinct from Event-Driven Coordination: Focuses on data consistency and transaction records rather than general coordination or pipelines.
Explore 2 awesome GitHub repositories matching software engineering & architecture · Event-Driven Data Consistency. Refine with filters or upvote what's useful.
本项目是一个分布式系统设计框架与架构指南。它为设计、部署与协调独立的网络服务提供了技术资源。 该框架建立了一套结构化的方法论,通过分离前端与后端关注点,将单体应用迁移为去中心化服务。它作为事件驱动架构的参考,专注于使用事件溯源与本地事务记录,在网络边界间保持数据一致性。 该项目涵盖了广泛的能力,包括分布式服务通信、服务发现配置以及 API 网关的实现。它还探讨了高可用性的部署策略,以及使用异步消息代理来解耦服务。
Coordinates data consistency across distributed services using event sourcing and local transaction records.
This project is a framework for implementing event sourcing and command query responsibility segregation within containerized microservices. It provides a structured approach to managing business state as a sequence of immutable events, ensuring a reliable audit trail and the ability to reconstruct system state at any point in time. The framework distinguishes itself by enforcing a clear separation between data modification and data retrieval paths. By utilizing event-driven data synchronization, it allows for the asynchronous updating of materialized views and read models, ensuring that quer
Uses immutable event streams to synchronize state across read models and materialized views for consistent data access.