Class ModelsBuilder<MODELRESULT extends ModelResult>
java.lang.Object
com.yahoo.vespa.config.server.modelfactory.ModelsBuilder<MODELRESULT>
- Direct Known Subclasses:
ActivatedModelsBuilder
,PreparedModelsBuilder
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
FieldsModifier and TypeFieldDescriptionprotected final com.yahoo.cloud.config.ConfigserverConfig
protected final boolean
True if we are running in hosted mode -
Method Summary
Modifier and TypeMethodDescriptionbuildModels
(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 versionsprotected 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
zone()
Returns the zone this is running in
-
Field Details
-
configserverConfig
protected final com.yahoo.cloud.config.ConfigserverConfig configserverConfig -
hosted
protected final boolean hostedTrue 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)
-