
Decentralized workflow coordination using the Choreography pattern
In a microservices architecture, services are divided into smaller ones to work together to process business transactions. This gives us the advantage of being able to develop services quicker and scale them independently. However, designing a distributed workflow is challenging and communication between the services is complex. One approach we could take is to implement a centralized orchestrator that acknowledges all incoming requests and delegates them to the relevant services. The orchestrator manages the entire workflow of the transaction. ...