
Answer-first summary for fast verification
Answer: Implement an exponential backoff with jitter.
Option D is the most effective as it combines exponential backoff with jitter, which helps to distribute retries more evenly and avoid overloading the network.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
You are setting up a retry policy for a task that fails occasionally due to transient network issues. Which of the following retry policies would be most effective?
A
Retry immediately without any delay.
B
Retry after a fixed delay of 5 minutes.
C
Implement a random delay between retries.
D
Implement an exponential backoff with jitter.
No comments yet.