All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.uber.cadence.internal.common.BackoffThrottler Maven / Gradle / Ivy

There is a newer version: 3.12.5
Show newest version
/*
 *  Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 *  Modifications copyright (C) 2017 Uber Technologies, Inc.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License"). You may not
 *  use this file except in compliance with the License. A copy of the License is
 *  located at
 *
 *  http://aws.amazon.com/apache2.0
 *
 *  or in the "license" file accompanying this file. This file is distributed on
 *  an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 *  express or implied. See the License for the specific language governing
 *  permissions and limitations under the License.
 */

package com.uber.cadence.internal.common;

import java.time.Duration;
import java.util.Objects;
import java.util.concurrent.atomic.AtomicLong;

/**
 * Used to throttle code execution in presence of failures using exponential backoff logic. The
 * formula used to calculate the next sleep interval is:
 *
 * 

* *

 * min(pow(backoffCoefficient, failureCount - 1) * initialSleep, maxSleep);
 * 
* *

Example usage: * *

* *

 * BackoffThrottler throttler = new BackoffThrottler(1000, 60000, 2);
 * while(!stopped) {
 *     try {
 *         throttler.throttle();
 *         // some code that can fail and should be throttled
 *         ...
 *         throttler.success();
 *     }
 *     catch (Exception e) {
 *         throttler.failure();
 *     }
 * }
 * 
* * @author fateev */ public final class BackoffThrottler { private final Duration initialSleep; private final Duration maxSleep; private final double backoffCoefficient; private final AtomicLong failureCount = new AtomicLong(); /** * Construct an instance of the throttler. * * @param initialSleep time to sleep on the first failure * @param maxSleep maximum time to sleep independently of number of failures * @param backoffCoefficient coefficient used to calculate the next time to sleep. */ public BackoffThrottler(Duration initialSleep, Duration maxSleep, double backoffCoefficient) { Objects.requireNonNull(initialSleep, "initialSleep"); this.initialSleep = initialSleep; this.maxSleep = maxSleep; this.backoffCoefficient = backoffCoefficient; } private long calculateSleepTime() { double sleepMillis = Math.pow(backoffCoefficient, failureCount.get() - 1) * initialSleep.toMillis(); if (maxSleep != null) { return Math.min((long) sleepMillis, maxSleep.toMillis()); } return (long) sleepMillis; } /** * Sleep if there were failures since the last success call. * * @throws InterruptedException */ public void throttle() throws InterruptedException { if (failureCount.get() > 0) { Thread.sleep(calculateSleepTime()); } } /** Resent failure count to 0. */ public void success() { failureCount.set(0); } /** Increment failure count. */ public void failure() { failureCount.incrementAndGet(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy