summaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/application/ConfigConvergenceChecker.java
diff options
context:
space:
mode:
Diffstat (limited to 'configserver/src/main/java/com/yahoo/vespa/config/server/application/ConfigConvergenceChecker.java')
-rw-r--r--configserver/src/main/java/com/yahoo/vespa/config/server/application/ConfigConvergenceChecker.java50
1 files changed, 47 insertions, 3 deletions
diff --git a/configserver/src/main/java/com/yahoo/vespa/config/server/application/ConfigConvergenceChecker.java b/configserver/src/main/java/com/yahoo/vespa/config/server/application/ConfigConvergenceChecker.java
index c734b01aee3..ba0392ffc5a 100644
--- a/configserver/src/main/java/com/yahoo/vespa/config/server/application/ConfigConvergenceChecker.java
+++ b/configserver/src/main/java/com/yahoo/vespa/config/server/application/ConfigConvergenceChecker.java
@@ -7,6 +7,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.inject.Inject;
import com.yahoo.component.AbstractComponent;
import com.yahoo.concurrent.DaemonThreadFactory;
+import com.yahoo.config.model.api.ApplicationClusterInfo;
import com.yahoo.config.model.api.HostInfo;
import com.yahoo.config.model.api.PortInfo;
import com.yahoo.config.model.api.ServiceInfo;
@@ -44,6 +45,7 @@ import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import java.util.logging.Level;
import java.util.logging.Logger;
+import java.util.stream.Collectors;
import static com.yahoo.config.model.api.container.ContainerServiceType.CLUSTERCONTROLLER_CONTAINER;
import static com.yahoo.config.model.api.container.ContainerServiceType.CONTAINER;
@@ -83,18 +85,40 @@ public class ConfigConvergenceChecker extends AbstractComponent {
/** Fetches the active config generation for all services in the given application. */
public Map<ServiceInfo, Long> getServiceConfigGenerations(Application application, Duration timeoutPerService) {
+ return getServiceConfigGenerations(application, timeoutPerService, true);
+ }
+
+ /**
+ * Fetches the active config generation for all services in the given application. Will not check services
+ * which defer config changes until restart if checkAll is false.
+ */
+ private Map<ServiceInfo, Long> getServiceConfigGenerations(Application application, Duration timeoutPerService, boolean checkAll) {
List<ServiceInfo> servicesToCheck = new ArrayList<>();
application.getModel().getHosts()
.forEach(host -> host.getServices().stream()
.filter(service -> serviceTypesToCheck.contains(service.getServiceType()))
+ .filter(serviceInfo -> shouldCheckService(checkAll, application, serviceInfo))
.forEach(service -> getStatePort(service).ifPresent(port -> servicesToCheck.add(service))));
+ log.log(Level.FINE, "Services to check for config convergence: " + servicesToCheck);
return getServiceGenerations(servicesToCheck, timeoutPerService);
}
- /** Check all services in given application. Returns the minimum current generation of all services */
- public ServiceListResponse getConfigGenerationsForAllServices(Application application, Duration timeoutPerService) {
- Map<ServiceInfo, Long> currentGenerations = getServiceConfigGenerations(application, timeoutPerService);
+ /** Checks all services in given application. Returns the minimum current generation of all services */
+ public ServiceListResponse checkConvergenceForAllServices(Application application, Duration timeoutPerService) {
+ return checkConvergence(application, timeoutPerService, true);
+ }
+
+ /**
+ * Checks services except those which defer config changes until restart in the given application.
+ * Returns the minimum current generation of those services.
+ */
+ public ServiceListResponse checkConvergenceUnlessDeferringChangesUntilRestart(Application application, Duration timeoutPerService) {
+ return checkConvergence(application, timeoutPerService, false);
+ }
+
+ private ServiceListResponse checkConvergence(Application application, Duration timeoutPerService, boolean checkAll) {
+ Map<ServiceInfo, Long> currentGenerations = getServiceConfigGenerations(application, timeoutPerService, checkAll);
long currentGeneration = currentGenerations.values().stream().mapToLong(Long::longValue).min().orElse(-1);
return new ServiceListResponse(currentGenerations, application.getApplicationGeneration(), currentGeneration);
}
@@ -116,6 +140,26 @@ public class ConfigConvergenceChecker extends AbstractComponent {
}
}
+ private boolean shouldCheckService(boolean checkServicesWithDeferChangesUntilRestart, Application application, ServiceInfo serviceInfo) {
+ if (checkServicesWithDeferChangesUntilRestart) return true;
+ if (isNotContainer(serviceInfo)) return true;
+ return serviceIsInClusterWhichShouldBeChecked(application, serviceInfo);
+ }
+
+ private boolean isNotContainer(ServiceInfo serviceInfo) {
+ return ! List.of(CONTAINER.serviceName, QRSERVER.serviceName, METRICS_PROXY_CONTAINER).contains(serviceInfo.getServiceType());
+ }
+
+ // Don't check service in a cluster which uses restartOnDeploy (new config will not be used until service is restarted)
+ private boolean serviceIsInClusterWhichShouldBeChecked(Application application, ServiceInfo serviceInfo) {
+ Set<ApplicationClusterInfo> excludeFromChecking = application.getModel().applicationClusterInfo()
+ .stream()
+ .filter(ApplicationClusterInfo::getDeferChangesUntilRestart)
+ .collect(Collectors.toSet());
+
+ return excludeFromChecking.stream().noneMatch(info -> info.name().equals(serviceInfo.getProperty("clustername").orElse("")));
+ }
+
/** Gets service generation for a list of services (in parallel). */
private Map<ServiceInfo, Long> getServiceGenerations(List<ServiceInfo> services, Duration timeout) {
try (CloseableHttpAsyncClient client = createHttpClient()) {