aboutsummaryrefslogtreecommitdiffstats
path: root/service-monitor/src/main/java/com/yahoo/vespa/service/duper/DuperModelManager.java
blob: 400c4f4b90709230ab4db8f1157bdf1c2547394a (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.service.duper;

import ai.vespa.http.DomainName;
import com.yahoo.cloud.config.ConfigserverConfig;
import com.yahoo.component.annotation.Inject;
import com.yahoo.config.model.api.ApplicationInfo;
import com.yahoo.config.model.api.SuperModel;
import com.yahoo.config.model.api.SuperModelListener;
import com.yahoo.config.model.api.SuperModelProvider;
import com.yahoo.config.provision.ApplicationId;
import com.yahoo.vespa.service.monitor.CriticalRegion;
import com.yahoo.vespa.service.monitor.DuperModelInfraApi;
import com.yahoo.vespa.service.monitor.DuperModelListener;
import com.yahoo.vespa.service.monitor.DuperModelProvider;
import com.yahoo.vespa.service.monitor.InfraApplicationApi;

import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import java.util.concurrent.locks.ReentrantLock;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
import java.util.stream.Stream;

/**
 * @author hakonhall
 */
public class DuperModelManager implements DuperModelProvider, DuperModelInfraApi {

    private static final Logger logger = Logger.getLogger(DuperModelManager.class.getName());

    // Infrastructure applications
    static final ControllerHostApplication controllerHostApplication = new ControllerHostApplication();
    static final ControllerApplication controllerApplication = new ControllerApplication();
    static final ConfigServerHostApplication configServerHostApplication = new ConfigServerHostApplication();
    static final ConfigServerApplication configServerApplication = new ConfigServerApplication();
    static final ProxyHostApplication proxyHostApplication = new ProxyHostApplication();
    static final TenantHostApplication tenantHostApplication = new TenantHostApplication();

    private final Map<ApplicationId, InfraApplication> supportedInfraApplications;

    private static final CriticalRegionChecker disallowedDuperModeLockAcquisitionRegions =
            new CriticalRegionChecker("duper model deadlock detection");

    private final ReentrantLock lock = new ReentrantLock(true);
    private final DuperModel duperModel;
    // The set of active infrastructure ApplicationInfo. Not all are necessarily in the DuperModel for historical reasons.
    private final Set<ApplicationId> activeInfraInfos = new HashSet<>(10);

    private boolean superModelIsComplete = false;
    private boolean infraApplicationsIsComplete = false;

    @Inject
    public DuperModelManager(ConfigserverConfig configServerConfig, SuperModelProvider superModelProvider) {
        this(configServerConfig.multitenant(),
                configServerConfig.serverNodeType() == ConfigserverConfig.ServerNodeType.Enum.controller,
             superModelProvider, new DuperModel());
    }

    /** Non-private for testing */
    public DuperModelManager(boolean multitenant, boolean isController, SuperModelProvider superModelProvider,
                             DuperModel duperModel) {
        this.duperModel = duperModel;

        if (multitenant) {
            supportedInfraApplications =
                    (isController ?
                            Stream.of(controllerHostApplication, controllerApplication) :
                            Stream.of(configServerHostApplication, configServerApplication, proxyHostApplication, tenantHostApplication)
                    ).collect(Collectors.toUnmodifiableMap(InfraApplication::getApplicationId, Function.identity()));
        } else {
            supportedInfraApplications = Map.of();
        }

        superModelProvider.registerListener(new SuperModelListener() {
            @Override
            public void applicationActivated(SuperModel superModel, ApplicationInfo application) {
                lockedRunnable(() -> duperModel.add(application));
            }

            @Override
            public void applicationRemoved(SuperModel superModel, ApplicationId applicationId) {
                lockedRunnable(() -> duperModel.remove(applicationId));
            }

            @Override
            public void notifyOfCompleteness(SuperModel superModel) {
                lockedRunnable(() -> {
                    if (!superModelIsComplete) {
                        superModelIsComplete = true;
                        logger.log(Level.FINE, "All bootstrap tenant applications have been activated");
                        maybeSetDuperModelAsComplete();
                    }
                });
            }
        });
    }

    /**
     * Synchronously call {@link DuperModelListener#applicationActivated(ApplicationInfo) listener.applicationActivated()}
     * for each currently active application, and forward future changes.
     */
    @Override
    public void registerListener(DuperModelListener listener) {
        lockedRunnable(() -> duperModel.registerListener(listener));
    }

    @Override
    public List<InfraApplicationApi> getSupportedInfraApplications() {
        return new ArrayList<>(supportedInfraApplications.values());
    }

    @Override
    public Optional<InfraApplicationApi> getInfraApplication(ApplicationId applicationId) {
        return Optional.ofNullable(supportedInfraApplications.get(applicationId));
    }

    /** Returns true if application is considered an infrastructure application by the DuperModel. */
    public boolean isSupportedInfraApplication(ApplicationId applicationId) {
        return supportedInfraApplications.containsKey(applicationId);
    }

    @Override
    public boolean infraApplicationIsActive(ApplicationId applicationId) {
        return lockedSupplier(() -> activeInfraInfos.contains(applicationId));
    }

    @Override
    public void infraApplicationActivated(ApplicationId applicationId, List<DomainName> hostnames) {
        InfraApplication application = supportedInfraApplications.get(applicationId);
        if (application == null) {
            throw new IllegalArgumentException("There is no infrastructure application with ID '" + applicationId + "'");
        }

        lockedRunnable(() -> {
            activeInfraInfos.add(applicationId);
            duperModel.add(application.makeApplicationInfo(hostnames));
        });
    }

    @Override
    public void infraApplicationRemoved(ApplicationId applicationId) {
        if (!supportedInfraApplications.containsKey(applicationId)) {
            throw new IllegalArgumentException("There is no infrastructure application with ID '" + applicationId + "'");
        }

        lockedRunnable(() -> {
            activeInfraInfos.remove(applicationId);
            duperModel.remove(applicationId);
        });
    }

    @Override
    public void infraApplicationsIsNowComplete() {
        lockedRunnable(() -> {
            if (!infraApplicationsIsComplete) {
                infraApplicationsIsComplete = true;
                logger.log(Level.INFO, "All infrastructure applications have been activated");
                maybeSetDuperModelAsComplete();
            }
        });
    }

    public Optional<ApplicationInfo> getApplicationInfo(ApplicationId applicationId) {
        return lockedSupplier(() -> duperModel.getApplicationInfo(applicationId));
    }

    public Optional<ApplicationInfo> getApplicationInfo(DomainName hostname) {
        return lockedSupplier(() -> duperModel.getApplicationInfo(hostname));
    }

    public List<ApplicationInfo> getApplicationInfos() {
        return lockedSupplier(() -> duperModel.getApplicationInfos());
    }

    /**
     * Within the region, trying to accesss the duper model (without already having the lock)
     * will cause an IllegalStateException to be thrown.
     */
    public CriticalRegion disallowDuperModelLockAcquisition(String regionDescription) {
        return disallowedDuperModeLockAcquisitionRegions.startCriticalRegion(regionDescription);
    }

    private void maybeSetDuperModelAsComplete() {
        if (superModelIsComplete && infraApplicationsIsComplete) {
            duperModel.setComplete();
        }
    }

    private <T> T lockedSupplier(Supplier<T> supplier) {
        if (lock.isHeldByCurrentThread()) {
            return supplier.get();
        }

        disallowedDuperModeLockAcquisitionRegions
                .assertOutsideCriticalRegions("acquiring duper model lock");

        lock.lock();
        try {
            return supplier.get();
        } finally {
            lock.unlock();
        }
    }

    private void lockedRunnable(Runnable runnable) {
        if (lock.isHeldByCurrentThread()) {
            runnable.run();
        }

        disallowedDuperModeLockAcquisitionRegions
                .assertOutsideCriticalRegions("acquiring duper model lock");

        lock.lock();
        try {
            runnable.run();
        } finally {
            lock.unlock();
        }
    }

}