summaryrefslogtreecommitdiffstats
path: root/config-model-api
Commit message (Collapse)AuthorAgeFilesLines
* Add a flag to control default dispatch policy per zone.Henning Baldersheim2019-02-011-0/+1
|
* Java dispatch feature flagOlli Virtanen2019-01-281-2/+3
|
* Merge pull request #8225 from vespa-engine/bratseth/nonfunctional-changes-onlyJon Bratseth2019-01-251-0/+2
|\ | | | | Nonfunctional changes only
| * Nonfunctional changes onlyJon Bratseth2019-01-241-0/+2
| |
* | Make ModelContext.Properties more accessible in config modelHåkon Hallingstad2019-01-251-0/+1
|/ | | | | | | | | | | | | | | This commit makes it easier to get the ModelContext.Properties instance in the config model. Before, one would typically have to change a bunch of code to wire through a new property (builder methods and fields, DeployProperties constructor, fields, and getters, mock classes, ...). It is made accessible through: - ModelContext.properties(), - DeployState.getProperties(), and - ConfigModelContext.properties() The Properties implementation is in the configserver module, making it easy to back properties with flags.
* Update abi specs for 7.gjoranv2019-01-211-5/+1
|
* Remove deprecated duplicate Version classJon Bratseth2019-01-212-34/+2
|
* 6-SNAPSHOT -> 7-SNAPSHOTArnstein Ressem2019-01-211-2/+2
|
* Remove deprecated and unused methodHarald Musum2019-01-211-11/+0
|
* Remove support for block-upgrade element in deployment.xmlHarald Musum2019-01-212-38/+3
|
* Update APIs that have changed.Ilpo Ruotsalainen2019-01-091-3/+53
|
* Revert "Revert "Enable ABI checking on modules with public APIs""Ilpo Ruotsalainen2019-01-092-0/+456
| | | | This reverts commit cd470d8ac8a58c943748f028a37d864507628e99.
* Revert "Enable ABI checking on modules with public APIs"Håkon Hallingstad2019-01-042-456/+0
|
* Merge pull request #7964 from vespa-engine/iruotsalainen/enable-abi-checkIlpo Ruotsalainen2019-01-042-0/+456
|\ | | | | Enable ABI checking on modules with public APIs
| * Move abi-check-plugin configuration to parent.Ilpo Ruotsalainen2018-12-211-12/+0
| | | | | | | | | | Instead of configuring in each module separately, put all configuration to parent and let the relevant modules just enable the plugin.
| * Enable abi-check-plugin on relevant modules.Ilpo Ruotsalainen2018-12-182-0/+468
| |
* | Deep check for emptinessJon Marius Venstad2019-01-042-3/+3
| |
* | Better API?Jon Marius Venstad2019-01-043-36/+64
| |
* | Move Notifications to upper levelJon Marius Venstad2019-01-034-113/+121
| |
* | Update notifications syntaxJon Marius Venstad2019-01-033-24/+110
| |
* | Add notification settings to test app package builderJon Marius Venstad2019-01-021-1/+1
| |
* | Read notifications from deployment spec XMLJon Marius Venstad2019-01-023-3/+89
| |
* | Remove unused constructorsJon Marius Venstad2019-01-021-10/+0
|/
* Remove unused constructorHarald Musum2018-12-071-10/+1
|
* Make service monitors aware of infra applications in duper model.Håkon Hallingstad2018-12-061-6/+7
| | | | | | | | | | | | | | | - Notify monitors of infrastructure application activation. Live-flipping the content of the duper model is non-trivial and has been removed. - Split out DuperModel as a simple mutable and thread-unsafe container of the applications in the duper model, that also handles calls listeners on changes. The previous DuperModel has been renamed to DuperModelManager. - Replace SuperModelProvider::snapshot method (fast but difficult to use right) with registerListener. - Shorten the fully qualified package names by 1-2 levels for mosts classes. Next steps: - Make HA query the real orchestrator - Start experimenting with health monitoring of infra apps
* Revert "Revert "Add infrastructure applications to DuperModel""Håkon Hallingstad2018-12-031-0/+4
|
* Revert "Add infrastructure applications to DuperModel"Harald Musum2018-12-031-4/+0
|
* Merge pull request #7828 from ↵Håkon Hallingstad2018-12-031-0/+4
|\ | | | | | | | | vespa-engine/hakonhall/add-infrastructure-applications-to-dupermodel Add infrastructure applications to DuperModel
| * Add infrastructure applications to DuperModelHåkon Hallingstad2018-11-301-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DuperModel is (will be) responsible for both active tenant applications (through SuperModel) and infrastructure applications. This PR is one step in that direction: - All infrastructure applications (config, confighost, controller, controllerhost, and proxyhost) are owned and managed by DuperModel. - The InfrastructureProvisioner retrieves all possible infra apps from the DuperModel (through a reduced API), and "activates" each of them if target is set and there are any nodes etc. - The InfrastructureProvisioner then notifies the DuperModel which apps have been activated, and with which hosts. - The DuperModel can then build delegate artificially create ApplicationInfo, which gets translated into the application model, and finally the service model. - The resulting service model has NOT_CHECKED for each hostadmin service instance. This is sufficient for goal 1 of this sprint. - The config server application currently has health, so that's kept as-is for now. - Feature flags have been tried and works and allows 1. to disable adding the infra apps in the DuperModel, and 2. to enable the infra configserver instead of the currently created configserver w/health.
* | Deprecate com.yahoo.config.provision.VersionJon Bratseth2018-12-012-7/+41
|/ | | | We have com.yahoo.component.Version, and one is enough.
* Remove unused methodHarald Musum2018-11-281-4/+0
|
* Create a config model view (api) package under model-integrationJon Bratseth2018-11-264-181/+0
| | | | | | This is to avoid having to install config-mode and dependencies in the container at startup as a consequence of wanting model-integration there to make TensorFlow available.
* Model the config model view of model-integrationJon Bratseth2018-11-264-0/+181
| | | | | This is to make it clearer that these methods are part of the config model API.
* CleanupHarald Musum2018-11-201-23/+5
|
* Need to remove override annotation before method can be removedHarald Musum2018-11-161-1/+1
|
* Merge pull request #7595 from vespa-engine/musum/simplify-supermodel-part-2Harald Musum2018-11-121-0/+15
|\ | | | | Simplify supermodel, part 2
| * Simplify supermodel, part 2Harald Musum2018-11-081-0/+15
| |
* | Log existing application infos if one is not foundHarald Musum2018-11-081-0/+5
|/
* Use simpler map for modelsHarald Musum2018-11-051-47/+38
| | | | | Need to keep old constructor and make a temporary one with an ignored argument to make this work (since arguments will be equal due to type erasure)
* Inject Zone and remove unused methodHarald Musum2018-10-282-7/+1
|
* Move major-version from services to deployJon Bratseth2018-10-181-3/+5
|
* Don't upgrade if major version i pinnedJon Bratseth2018-10-183-3/+50
| | | | | Add major-version to deployment as that makes it available to deployment orchestration.
* Add feature flag for using dedicated node for logserver (#7023)Harald Musum2018-09-201-0/+1
|
* Revert "Merge pull request #6742 from ↵Jon Bratseth2018-08-301-4/+2
| | | | | | | vespa-engine/revert-6732-bratseth/generate-rank-profiles-for-all-models-part-10-2" This reverts commit a294ef166c59c795f9e6fd31fbd6914c502d559a, reversing changes made to cef4c0f9d7c084f320e77abb2a93522acd7f3f53.
* Revert "Bratseth/generate rank profiles for all models part 10 2"Jon Bratseth2018-08-301-2/+4
|
* Revert "Merge pull request #6722 from ↵Jon Bratseth2018-08-291-4/+2
| | | | | | | vespa-engine/revert-6713-bratseth/generate-rank-profiles-for-all-models-part-10" This reverts commit 6958f2a641eaad0c61249e7bca887a1405e17d02, reversing changes made to 06323aff51bf054d64ef2bea001917a22433717f.
* Revert "Read stored models from Zk package for global rank profiles"Jon Bratseth2018-08-291-2/+4
|
* Read stored models from Zk package for global rank profilesJon Bratseth2018-08-291-4/+2
|
* Scope imported models to an entire application buildJon Bratseth2018-08-221-3/+2
|
* Revert "Merge pull request #6635 from ↵Jon Bratseth2018-08-211-2/+4
| | | | | | | vespa-engine/bratseth/generate-rank-profiles-for-all-models-part-2-4" This reverts commit 3f91e18528b4982398332a30728eed8f7d2b580c, reversing changes made to 8e3ba08f1d3b79e573864726c6c03e58862feee6.