BackOff
Backoff is a strategy for dealing with failures, conflicts, or resource competition.
The core logic is: when an operation fails or encounters a limitation, it will pause for a period of time before trying again, and the retry interval is usually adjusted dynamically to avoid increasing system pressure or conflicts.
let’s see how spring-framework implement it.