Github user hmcl commented on a diff in the pull request:

    https://github.com/apache/storm/pull/1924#discussion_r99869121
  
    --- Diff: 
external/storm-kafka-client/src/main/java/org/apache/storm/kafka/spout/KafkaSpoutRetryExponentialBackoff.java
 ---
    @@ -27,13 +27,15 @@
     import java.util.Comparator;
     import java.util.HashSet;
     import java.util.Iterator;
    +import java.util.Objects;
     import java.util.Set;
     import java.util.TreeSet;
     import java.util.concurrent.TimeUnit;
    +import org.apache.storm.utils.Time;
     
     /**
      * Implementation of {@link KafkaSpoutRetryService} using the exponential 
backoff formula. The time of the nextRetry is set as follows:
    - * nextRetry = failCount == 1 ? currentTime + initialDelay : currentTime + 
delayPeriod^(failCount-1)    where failCount = 1, 2, 3, ...
    + * nextRetry = failCount == 1 ? currentTime + initialDelay : currentTime + 
delayPeriod*2^(failCount-1)    where failCount = 1, 2, 3, ...
      * nextRetry = Min(nextRetry, currentTime + maxDelay)
    --- End diff --
    
    OK.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to