aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/maintenance/InfrastructureProvisioner.java
blob: 5392df3d5b3da41331b9a9a781eb1cf597a7947e (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.maintenance;

import com.yahoo.config.provision.InfraDeployer;
import com.yahoo.jdisc.Metric;
import com.yahoo.vespa.hosted.provision.NodeRepository;

import java.time.Duration;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 * Periodically deploys infrastructure applications.
 * TODO: Merge this with {@link PeriodicApplicationMaintainer}
 *
 * @author freva
 */
public class InfrastructureProvisioner extends NodeRepositoryMaintainer {

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

    private final InfraDeployer infraDeployer;

    InfrastructureProvisioner(NodeRepository nodeRepository, InfraDeployer infraDeployer, Duration interval, Metric metric) {
        super(nodeRepository, interval, metric);
        this.infraDeployer = infraDeployer;
    }

    public void maintainButThrowOnException() {
        try {
            infraDeployer.activateAllSupportedInfraApplications(true);
        } catch (RuntimeException e) {
            logger.log(Level.INFO, "Failed to deploy supported infrastructure applications, " +
                    "will sleep 30s before propagating failure, to allow inspection of zk",
                    e.getMessage());
            try { Thread.sleep(30_000); } catch (InterruptedException ignored) { }
            throw e;
        }
    }

    @Override
    protected double maintain() {
        infraDeployer.activateAllSupportedInfraApplications(false);
        return 1.0;
    }

}