com.yahoo.vespa.hosted.provision.maintenance.InfrastructureProvisioner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of node-repository Show documentation
Show all versions of node-repository Show documentation
Keeps track of node assignment in a multi-application setup.
The newest version!
// Copyright Vespa.ai. 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;
}
}