aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/test/java/com/yahoo/vespa/hosted/provision/autoscale/ClusterModelTest.java
blob: bd7300ad6bf1011d7cb255a201288a3665d0eaab (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.autoscale;

import com.yahoo.config.provision.ApplicationId;
import com.yahoo.config.provision.Capacity;
import com.yahoo.config.provision.ClusterResources;
import com.yahoo.config.provision.ClusterSpec;
import com.yahoo.config.provision.NodeResources;
import com.yahoo.test.ManualClock;
import com.yahoo.vespa.hosted.provision.applications.Application;
import com.yahoo.vespa.hosted.provision.applications.Cluster;
import com.yahoo.vespa.hosted.provision.applications.Status;
import org.junit.Test;

import java.time.Duration;
import java.util.ArrayList;
import java.util.List;
import java.util.function.IntFunction;

import static org.junit.Assert.assertEquals;

/**
 * @author bratseth
 */
public class ClusterModelTest {

    private static final double delta = 0.001;

    @Test
    public void test_traffic_headroom() {
        ManualClock clock = new ManualClock();
        Application application = Application.empty(ApplicationId.from("t1", "a1", "i1"));
        Cluster cluster = cluster(new NodeResources(1, 10, 100, 1));
        application = application.with(cluster);

        // No current traffic share: Ideal load is low but capped
        var model1 = new ClusterModel(application.with(new Status(0.0, 1.0)),
                                      cluster, clock, Duration.ofMinutes(10),
                                      timeseries(cluster,100, t -> t == 0 ? 10000.0 : 0.0, t -> 0.0, clock),
                                      ClusterNodesTimeseries.empty());
        assertEquals(0.131, model1.idealLoad().cpu(), delta);

        // Almost no current traffic share: Ideal load is low but capped
        var model2 = new ClusterModel(application.with(new Status(0.0001, 1.0)),
                                      cluster, clock, Duration.ofMinutes(10),
                                      timeseries(cluster,100, t -> t == 0 ? 10000.0 : 0.0, t -> 0.0, clock),
                                      ClusterNodesTimeseries.empty());
        assertEquals(0.131, model2.idealLoad().cpu(), delta);
    }

    @Test
    public void test_growth_headroom() {
        ManualClock clock = new ManualClock();

        Application application = Application.empty(ApplicationId.from("t1", "a1", "i1"));
        Cluster cluster = cluster(new NodeResources(1, 10, 100, 1));
        application = application.with(cluster);

        // No current traffic: Ideal load is low but capped
        var model1 = new ClusterModel(application,
                                      cluster, clock, Duration.ofMinutes(10),
                                      timeseries(cluster,100, t -> t == 0 ? 10000.0 : 0.0, t -> 0.0, clock),
                                      ClusterNodesTimeseries.empty());
        assertEquals(0.275, model1.idealLoad().cpu(), delta);

        // Almost no current traffic: Ideal load is low but capped
        var model2 = new ClusterModel(application.with(new Status(0.0001, 1.0)),
                                      cluster, clock, Duration.ofMinutes(10),
                                      timeseries(cluster,100, t -> t == 0 ? 10000.0 : 0.0001, t -> 0.0, clock),
                                      ClusterNodesTimeseries.empty());
        assertEquals(0.040, model2.idealLoad().cpu(), delta);
    }

    private Cluster cluster(NodeResources resources) {
        return Cluster.create(ClusterSpec.Id.from("test"),
                              false,
                              Capacity.from(new ClusterResources(5, 1, resources)));
    }

    /** Creates the given number of measurements, spaced 5 minutes between, using the given function */
    private ClusterTimeseries timeseries(Cluster cluster,
                                         int measurements,
                                         IntFunction<Double> queryRate,
                                         IntFunction<Double> writeRate,
                                         ManualClock clock) {
        List<ClusterMetricSnapshot> snapshots = new ArrayList<>(measurements);
        for (int i = 0; i < measurements; i++) {
            snapshots.add(new ClusterMetricSnapshot(clock.instant(), queryRate.apply(i), writeRate.apply(i)));
            clock.advance(Duration.ofMinutes(5));
        }
        return new ClusterTimeseries(cluster.id(),snapshots);
    }

}