aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/metric/CostCalculator.java
blob: 23b81ebcd3450600fe7d515f80586bb469619bb8 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.metric;

import com.yahoo.config.provision.CloudName;
import com.yahoo.config.provision.Environment;
import com.yahoo.config.provision.TenantName;
import com.yahoo.vespa.hosted.controller.Controller;
import com.yahoo.vespa.hosted.controller.api.identifiers.Property;
import com.yahoo.vespa.hosted.controller.api.integration.configserver.NodeFilter;
import com.yahoo.vespa.hosted.controller.api.integration.configserver.NodeRepository;
import com.yahoo.vespa.hosted.controller.api.integration.resource.ResourceAllocation;
import com.yahoo.vespa.hosted.controller.application.SystemApplication;
import com.yahoo.vespa.hosted.controller.tenant.AthenzTenant;
import com.yahoo.vespa.hosted.controller.tenant.Tenant;

import java.time.Clock;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Map;
import java.util.stream.Collectors;
import java.util.stream.Stream;

import static com.yahoo.yolean.Exceptions.uncheck;

/**
 * @author ldalves
 */
public class CostCalculator {

    private static final double SELF_HOSTED_DISCOUNT = .5;

    public static String resourceShareByPropertyToCsv(NodeRepository nodeRepository,
                                                      Controller controller,
                                                      Clock clock,
                                                      Map<Property, ResourceAllocation> fixedAllocations) {

        var date = DateTimeFormatter.ofPattern("yyyy-MM-dd").withZone(ZoneId.of("UTC")).format(clock.instant());

        // Group properties by tenant name
        Map<TenantName, Property> propertyByTenantName = controller.tenants().asList().stream()
                                                                   .filter(AthenzTenant.class::isInstance)
                                                                   .collect(Collectors.toMap(Tenant::name,
                                                                                             tenant -> ((AthenzTenant) tenant).property()));

        // Sum up allocations
        Map<Property, ResourceAllocation> allocationByProperty = new HashMap<>();
        var nodes = controller.zoneRegistry().zones()
                              .reachable().in(Environment.prod).in(CloudName.YAHOO).zones().stream()
                              .flatMap(zone -> uncheck(() -> nodeRepository.list(zone.getId(), NodeFilter.all()).stream()))
                              .filter(node -> node.owner().isPresent() && !node.owner().get().tenant().equals(SystemApplication.TENANT))
                              .toList();
        var totalAllocation = ResourceAllocation.ZERO;
        for (var node : nodes) {
            Property property = propertyByTenantName.get(node.owner().get().tenant());
            if (property == null) continue;
            var allocation = allocationByProperty.getOrDefault(property, ResourceAllocation.ZERO);
            var nodeAllocation = new ResourceAllocation(node.resources().vcpu(), node.resources().memoryGb(), node.resources().diskGb(), node.resources().architecture());
            allocationByProperty.put(property, allocation.plus(nodeAllocation));
            totalAllocation = totalAllocation.plus(nodeAllocation);
        }

        // Add fixed allocations from config
        for (var kv : fixedAllocations.entrySet()) {
            var property = kv.getKey();
            var allocation = allocationByProperty.getOrDefault(property, ResourceAllocation.ZERO);
            var discountedFixedAllocation = kv.getValue().multiply(SELF_HOSTED_DISCOUNT);
            allocationByProperty.put(property, allocation.plus(discountedFixedAllocation));
            totalAllocation = totalAllocation.plus(discountedFixedAllocation);
        }

        return toCsv(allocationByProperty, date, totalAllocation);
    }

    private static String toCsv(Map<Property, ResourceAllocation> resourceShareByProperty, String date, ResourceAllocation totalResourceAllocation) {
        String header = "Date,Property,Reserved Cpu Cores,Reserved Memory GB,Reserved Disk Space GB,Usage Fraction\n";
        String entries = resourceShareByProperty.entrySet().stream()
                .sorted((Comparator.comparingDouble(entry -> entry.getValue().usageFraction(totalResourceAllocation))))
                .map(propertyEntry -> {
                    ResourceAllocation r = propertyEntry.getValue();
                    return Stream.of(date, propertyEntry.getKey(), r.getCpuCores(), r.getMemoryGb(), r.getDiskGb(), r.usageFraction(totalResourceAllocation))
                            .map(Object::toString).collect(Collectors.joining(","));
                })
                .collect(Collectors.joining("\n"));
        return header + entries;
    }

}