Skip to content

Fault Tolerance ‐ Retry with Backoff

FullstackCodingGuy edited this page Feb 6, 2025 · 1 revision
  • In case of retrieving data from a micro service, use retry mechanism with backoff to attempt again to get the data image
  • 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 image
Clone this wiki locally