MateuszNaKodach / SelfImprovement

This project has some sample code for my personal learning purpose. Things which I've learnead are collected as issues here: https://github.com/nowakprojects/SelfImprovement/issues
107 stars 17 forks source link

16 practical design guidelines for successful Event Sourcing #3486

Open MateuszNaKodach opened 4 years ago

MateuszNaKodach commented 4 years ago

https://www.continuousimprover.com/2020/06/guidelines-event-sourcing.html

MateuszNaKodach commented 4 years ago

Zadać pytanie o to i porównać z Axonem: Don’t use the domain events as a communication mechanism between domains or services. Event Sourcing is an implementation of a specific domain (or bounded context in DDD terms). Use more coarse-grained events for inter-domain communication, for instance by projecting the domain events into higher level events that are pushed to a message bus or API gateway.