aboutsummaryrefslogtreecommitdiffstats
path: root/messagebus/src/main/java/com/yahoo/messagebus/RateThrottlingPolicy.java
blob: 64fc1894c713408e3c0faa2d97c80257625c7fd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.messagebus;

import com.yahoo.concurrent.SystemTimer;
import com.yahoo.concurrent.Timer;

import java.util.logging.Logger;

/**
 * Throttling policy that throttles sending based on a desired rate. It will
 * block messages if the current rate is higher than desired, but otherwise will
 * respect the static throttle policy's maximum window size.
 *
 * Rate is measured from at most the last 60 seconds.
 */
public class RateThrottlingPolicy extends StaticThrottlePolicy {

    public static final Logger log = Logger.getLogger(RateThrottlingPolicy.class.getName());

    long PERIOD = 1000;
    double desiredRate;

    double allotted = 0.0;
    long currentPeriod = 0;

    Timer timer;

    public RateThrottlingPolicy(double desiredRate) {
        this(desiredRate, SystemTimer.INSTANCE);
    }

    public RateThrottlingPolicy(double desiredRate, Timer timer) {
        this.desiredRate = desiredRate;
        this.timer = timer;
        currentPeriod = timer.milliTime() / PERIOD;
    }

    public boolean canSend(Message message, int pendingCount) {
        if (!super.canSend(message, pendingCount)) {
            return false;
        }

        long period = timer.milliTime() / PERIOD;

        while (currentPeriod < period) {
            if (allotted > 0) {
                allotted = 0.0;
            }

            allotted = allotted + PERIOD * desiredRate / 1000;
            currentPeriod++;
        }

        if (allotted > 0.0) {
            allotted -= 1;
            return true;
        }

        return false;
    }
}