aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/modelfactory/ModelsBuilder.java
Commit message (Collapse)AuthorAgeFilesLines
* Update copyrightJon Bratseth2023-10-091-1/+1
|
* Log more and as warning when skipping config model versionsHarald Musum2023-09-251-3/+4
|
* Revert "Revert "Use another exception and error in response when quota is ↵Harald Musum2023-05-221-1/+2
| | | | exceed""
* Revert "Use another exception and error in response when quota is exceed"Harald Musum2023-05-221-2/+1
|
* Use another exception and error in response when quota is exceedHarald Musum2023-05-221-1/+2
|
* UnsupportedOperationException means invalid application packageMartin Polden2023-01-131-2/+1
|
* Revert "Revert collect(Collectors.toList())"Henning Baldersheim2022-12-041-1/+1
|
* Revert collect(Collectors.toList())Henning Baldersheim2022-12-041-1/+1
|
* collect(Collectors.toList()) -> toList()Henning Baldersheim2022-12-021-1/+1
|
* Nicer deploy errorsJon Bratseth2022-11-201-1/+1
|
* Lower log level for failed models on newer majorjonmv2022-07-011-1/+1
|
* Remove uneeded version checkjonmv2022-06-281-3/+0
|
* Disallow model building failures on any version with a major shared by a ↵jonmv2022-06-091-28/+15
| | | | deployed or target version
* Always fail model building when wanted version failsjonmv2022-06-091-2/+24
|
* Consolidate allocated hosts from all model versionsJon Bratseth2022-05-041-13/+10
| | | | | - Aactivate the superset of hosts allocated from all model versions - Use the version of each host allocated by the newest model version
* Minor simplificationJon Bratseth2022-05-021-5/+3
|
* Replace 'out of capacity' by 'node allocation failure'Jon Bratseth2022-02-231-2/+2
|
* Update Verizon Media copyright notices.gjoranv2021-10-071-1/+1
|
* Really allow skipping of old models in manual zonesJon Bratseth2021-06-081-3/+4
|
* Remove config field that is always true (and never overridden)Harald Musum2021-05-291-4/+1
|
* Log model build errors to the deploy logJon Bratseth2021-05-271-14/+28
|
* More lazy debug log message generationJon Marius Venstad2021-04-281-2/+2
|
* Log time use when building models (debug log)Harald Musum2021-01-211-4/+7
|
* Rename a variableHarald Musum2021-01-091-12/+11
|
* Log failure even when skipping old config modelsHarald Musum2021-01-091-1/+2
|
* Cleanup creation of host provisionerHarald Musum2021-01-081-9/+18
|
* Remove dead codeHarald Musum2020-06-041-6/+3
|
* Merge branch 'master' into hmusum/use-docker-image-instead-of-string-3Harald Musum2020-04-271-8/+8
|\
| * LogLevel.ERROR -> Level.SEVEREgjoranv2020-04-251-1/+1
| |
| * LogLevel.WARNING -> Level.WARNINGgjoranv2020-04-251-2/+2
| |
| * LogLevel.INFO -> Level.INFOgjoranv2020-04-251-2/+2
| |
| * LogLevel.DEBUG -> Level.FINEgjoranv2020-04-251-2/+2
| |
| * Import java.util.logging.Level instead of com.yahoo.log.LogLevelgjoranv2020-04-251-1/+1
| |
* | Use DockerImage instead of StringHarald Musum2020-04-221-4/+4
|/
* Validate resource changes by the lower limitJon Bratseth2020-04-081-4/+7
|
* Log failure to build model with application id and versionHarald Musum2020-03-161-1/+3
| | | | | Version is missing in exception, log to make it easier to find which version is causing this
* Add support for using a Docker image repository when deploying an applicationHarald Musum2020-03-111-5/+9
| | | | Preliminary support only, not completed
* Always try to build config model for old versionsHarald Musum2019-11-111-15/+18
| | | | | | | Try to build old config models, but do not fail deployment if skip-old-config-models validation override is true and building an old model fails. In manually deployed zones we previously did not build old config models, since skip-old-config-models was always true. With this change we will try to build those old models, but not fail if building one or more old models fails.
* Fix outputHarald Musum2019-10-301-1/+4
|
* Add Vespa version to ModelHarald Musum2019-10-301-1/+2
|
* Revert "Return 409 with error code TRANSIENT_ERROR when getting ↵Harald Musum2019-08-011-3/+3
| | | | TransientExce…"
* Move some exceptions to its own package (making them not part of public API)Harald Musum2019-08-011-3/+3
|
* don't wrap transient exceptions (like CertificateNotReadyException)andreer2019-06-271-1/+2
|
* Only allow skipping creation of models on newest major version for major ↵Harald Musum2019-05-091-4/+11
| | | | | | | | | | version >= 8 For major version 7 you either need to have an application package that works on major version 7 or you need to explicitly specify major-version=6 in application package, otherwise deployment will fail. Remove tests in RemoteSession that are covered by other tests.
* Add some more debug logging, needed when analyzing which models get builtHarald Musum2019-02-011-2/+3
|
* Build latest model version only for latest major, unless that failsHarald Musum2019-01-301-24/+34
|
* Deprecate com.yahoo.config.provision.VersionJon Bratseth2018-12-011-6/+5
| | | | We have com.yahoo.component.Version, and one is enough.
* Always load earlier major versionsJon Bratseth2018-11-201-9/+14
| | | | | | | Since we have extended the semantics of major-version to also mean "upgrade this application also if you generally don't upgrade", we need to make sure specifying this doesn't cause config models on *earlier* versions to not load.
* Rename methodHarald Musum2018-10-181-2/+2
|
* Only consider hosts with version set when deciding model versions to buildHarald Musum2018-10-181-7/+5
| | | | | Also fix bug where we tried to build wanted version more than once if there were more than one major version