What's the right way to implement SAGA using choreography?
When we have async communication between our microservices and employ distributed transactions. 2PC may not be an option.
Well, SAGA does.
But, how to implement SAGA using choreography? May I need a coordinator? May I emit an event to next SAGA parti...