we have a bunch of spring webservices and a angular application in frontend
i am trying to implement choreography based saga, where a http req from frontend application to one of the service and the service will update its database and raise kafka event which will be listened by next webservice and so on
I am confused over the fact that should frontend assume the req is successful (what if saga fails in between and saga is rolled back)or wait till entire saga is completed
Any comments/suggestion around this would be helpful...