summaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/SystemApplication.java
blob: 708133d2a078f3655deafdc622442374228ca2a9 (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
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.application;

import com.yahoo.config.provision.ApplicationId;
import com.yahoo.config.provision.NodeType;
import com.yahoo.config.provision.zone.ZoneId;
import com.yahoo.vespa.hosted.controller.Controller;
import com.yahoo.vespa.hosted.controller.api.identifiers.DeploymentId;
import com.yahoo.vespa.hosted.controller.api.integration.configserver.ServiceConvergence;

import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;

/**
 * This represents a system-level application in hosted Vespa. All infrastructure nodes in a hosted Vespa zones are
 * allocated to a system application.
 *
 * @author mpolden
 */
public enum SystemApplication {

    configServerHost(ApplicationId.from("hosted-vespa", "configserver-host", "default"), NodeType.confighost),
    proxyHost(ApplicationId.from("hosted-vespa", "proxy-host", "default"), NodeType.proxyhost),
    configServer(ApplicationId.from("hosted-vespa", "zone-config-servers", "default"), NodeType.config, configServerHost),
    zone(ApplicationId.from("hosted-vespa", "routing", "default"), Set.of(NodeType.proxy, NodeType.host),
         configServerHost, proxyHost, configServer);

    private final ApplicationId id;
    private final Set<NodeType> nodeTypes;
    private final List<SystemApplication> dependencies;

    SystemApplication(ApplicationId id, NodeType nodeType, SystemApplication... dependencies) {
        this(id, Set.of(nodeType), dependencies);
    }

    SystemApplication(ApplicationId id, Set<NodeType> nodeTypes, SystemApplication... dependencies) {
        if (nodeTypes.isEmpty()) {
            throw new IllegalArgumentException("Node types must be non-empty");
        }
        this.id = id;
        this.nodeTypes = Set.copyOf(nodeTypes);
        this.dependencies = List.of(dependencies);
    }

    public ApplicationId id() {
        return id;
    }

    /** The node type(s) that are implicitly allocated to this */
    public Set<NodeType> nodeTypes() {
        return nodeTypes;
    }

    /** Returns the system applications that should upgrade before this */
    public List<SystemApplication> dependencies() { return dependencies; }

    /** Returns whether this system application has an application package */
    public boolean hasApplicationPackage() {
        return this == zone;
    }

    /** Returns whether config for this application has converged in given zone */
    public boolean configConvergedIn(ZoneId zone, Controller controller) {
        if (!hasApplicationPackage()) {
            return true;
        }
        return controller.configServer().serviceConvergence(new DeploymentId(id(), zone))
                         .map(ServiceConvergence::converged)
                         .orElse(false);
    }

    /** Returns the node types of this that should receive OS upgrades */
    public Set<NodeType> nodeTypesWithUpgradableOs() {
        return nodeTypes().stream().filter(NodeType::isDockerHost).collect(Collectors.toSet());
    }

    /** All known system applications */
    public static List<SystemApplication> all() {
        return List.of(values());
    }

    @Override
    public String toString() {
        return String.format("system application %s of type %s", id, nodeTypes);
    }

}