Hey,
I am working on a microservice project which have 4 services at this point. Now as per the requirement i have a need to implement service call hierarchy as -
client -> service A -> service B -> service C
i am not feeling much confidence in this as i think the compensation for failure will be a mess (SAGA & i m not using event-driven as of now). Can someone guide me on this and tell the better & standard way to do this. should i implement - service A -> service B & on success service A -> service C instead?
Appreciate if someone can share their knowledge on this.
Thanks!!