
Explanation:
Option D is the most effective as it combines exponential backoff with jitter, which helps to distribute retries more evenly and avoid overloading the system.
Ultimate access to all questions.
You are setting up a retry policy for a task that fails occasionally due to resource constraints. 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.