If downstream microservice is responsible for handling POST request (resource creation) and if it is down then how should I handle this scenario in circuit breaker design pattern?
There could be multiple scenario to address this problem and I am trying to find optimal way of handling this scenario.
- Should I return dummy response ?
- What if I don't want my client to POST again in this case and I don't want to loose POST data?