Let's say we have two microservices: MeetingProposal
and Meeting
.
Process of creating a meeting:
accepted
and also create a meeting in the meeting microservice.Question:
How we should connect these two processes to each other (after proposal accepted
=> create meeting automatically
)?
It's called business processes management, long running flows, sagas, or similar(see this)
We should use some orchestration engines like Cadence or Netflix Conductor or any other orchestration engine.