Top "Exponential-backoff" questions

RX Java - Retry some code that throws exception

I'm trying to use RX Java to consume some data coming from a source that keeps sending objects. I'm wondering …

java error-handling rx-java observable exponential-backoff
Exponential backoff with message order guarantee using spring-kafka

I'm trying to implement a Spring Boot-based Kafka consumer that has some very strong message delivery guarentees, even in a …

apache-kafka messaging spring-kafka spring-retry exponential-backoff
Why is random jitter applied to back-off strategies?

Here is some sample code I've seen. int expBackoff = (int) Math.pow(2, retryCount); int maxJitter = (int) Math.ceil(expBackoff*0.2); int …

algorithm random exponential-backoff