Which strategy involves delaying the retry attempts for failed tasks to avoid overwhelming the system?

  • Constant backoff
  • Exponential backoff
  • Immediate retry
  • Linear backoff
Exponential backoff involves increasing the delay between retry attempts exponentially after each failure. This strategy helps prevent overwhelming the system with retry attempts during periods of high load or when dealing with transient failures. By gradually increasing the delay, it allows the system to recover from temporary issues and reduces the likelihood of exacerbating the problem.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *