Fault Tolerance ‐ Retry with Backoff - FullstackCodingGuy/Developer-Fundamentals GitHub Wiki
- In case of retrieving data from a micro service, use retry mechanism with backoff to attempt again to get the data
- This retry mechanism will work in direct communication method, but will not help in event driven architecture, as it will be using messages/events to communication between services. In this scenario AWS Step Function will come in handy