Class ModelsBuilder<MODELRESULT extends ModelResult>

java.lang.Object
com.yahoo.vespa.config.server.modelfactory.ModelsBuilder<MODELRESULT>
Direct Known Subclasses:
ActivatedModelsBuilder, PreparedModelsBuilder

public abstract class ModelsBuilder<MODELRESULT extends ModelResult> extends Object
Responsible for building the right versions of application models for a given tenant and application generation. Actual model building is implemented by subclasses because it differs in the prepare and activate phases.
Author:
bratseth
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected final com.yahoo.cloud.config.ConfigserverConfig
     
    protected final boolean
    True if we are running in hosted mode
  • Method Summary

    Modifier and Type
    Method
    Description
    buildModels(com.yahoo.config.provision.ApplicationId applicationId, Optional<com.yahoo.config.provision.DockerImage> dockerImageRepository, com.yahoo.component.Version wantedNodeVespaVersion, com.yahoo.config.application.api.ApplicationPackage applicationPackage, AllocatedHostsFromAllModels allocatedHosts, Instant now)
    Builds all applicable model versions
    protected abstract MODELRESULT
    buildModelVersion(com.yahoo.config.model.api.ModelFactory modelFactory, com.yahoo.config.application.api.ApplicationPackage applicationPackage, com.yahoo.config.provision.ApplicationId applicationId, Optional<com.yahoo.config.provision.DockerImage> dockerImageRepository, com.yahoo.component.Version wantedNodeVespaVersion)
     
    protected com.yahoo.config.application.api.DeployLogger
     
    protected com.yahoo.config.provision.Zone
    Returns the zone this is running in

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • configserverConfig

      protected final com.yahoo.cloud.config.ConfigserverConfig configserverConfig
    • hosted

      protected final boolean hosted
      True if we are running in hosted mode
  • Method Details

    • zone

      protected com.yahoo.config.provision.Zone zone()
      Returns the zone this is running in
    • deployLogger

      protected com.yahoo.config.application.api.DeployLogger deployLogger()
    • buildModels

      public List<MODELRESULT> buildModels(com.yahoo.config.provision.ApplicationId applicationId, Optional<com.yahoo.config.provision.DockerImage> dockerImageRepository, com.yahoo.component.Version wantedNodeVespaVersion, com.yahoo.config.application.api.ApplicationPackage applicationPackage, AllocatedHostsFromAllModels allocatedHosts, Instant now)
      Builds all applicable model versions
      Parameters:
      allocatedHosts - the newest version (major and minor) (which is loaded first) decides the allocated hosts and assigns to this SettableOptional such that it can be used after this method returns
    • buildModelVersion

      protected abstract MODELRESULT buildModelVersion(com.yahoo.config.model.api.ModelFactory modelFactory, com.yahoo.config.application.api.ApplicationPackage applicationPackage, com.yahoo.config.provision.ApplicationId applicationId, Optional<com.yahoo.config.provision.DockerImage> dockerImageRepository, com.yahoo.component.Version wantedNodeVespaVersion)