aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/main/java/com/yahoo/documentapi/messagebus/protocol/AdaptiveLoadBalancer.java
blob: 5a616a0a391b16e2ca2c8b4697ccc099730fbd84 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.documentapi.messagebus.protocol;

import com.yahoo.jrt.slobrok.api.Mirror;

import java.util.List;
import java.util.Random;

/**
 * Will pick 2 random candidates and select the one with least pending operations.
 *
 * @author baldersheim
 */
class AdaptiveLoadBalancer extends LoadBalancer {
    private final Random random;
    AdaptiveLoadBalancer(String cluster) {
        this(cluster, new Random());
    }
    AdaptiveLoadBalancer(String cluster, Random random) {
        super(cluster);
        this.random = random;
    }

    @Override
    Node getRecipient(List<Mirror.Entry> choices) {
        if (choices.isEmpty()) return null;
        Mirror.Entry entry;
        NodeMetrics metrics;
        if (choices.size() == 1) {
            entry = choices.get(0);
            metrics = getNodeMetrics(entry);
        } else {
            int candA = random.nextInt(choices.size());
            int candB = random.nextInt(choices.size());
            while (candB == candA) {
                candB = random.nextInt(choices.size());
            }
            entry = choices.get(candA);
            Mirror.Entry entryB = choices.get(candB);
            metrics = getNodeMetrics(entry);
            NodeMetrics metricsB = getNodeMetrics(entryB);
            if (metrics.pending() > metricsB.pending()) {
                entry = entryB;
                metrics = metricsB;
            }
        }
        metrics.incSend();
        return new Node(entry, metrics);
    }

    @Override
    void received(Node node, boolean busy) {
        node.metrics.incReceived();
        if (busy) {
            node.metrics.incBusy();
        }
    }
}