aboutsummaryrefslogtreecommitdiffstats
path: root/configserver
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #18630 from ↵Geir Storli2021-07-161-0/+3
|\ | | | | | | | | vespa-engine/geirst/min-node-ratio-per-group-feature-flag Add feature flag for min-node-ratio-per-group.
| * Add feature flag for min-node-ratio-per-group.Geir Storli2021-07-161-0/+3
| |
* | Do not expire sessions with state UNKNOWNHarald Musum2021-07-165-10/+18
|/
* Merge branch 'master' into hmusum/remove-flag-2Harald Musum2021-07-163-4/+22
|\
| * Use local sessions fromm file system when deleting expired sessionsHarald Musum2021-07-143-4/+20
| | | | | | | | | | | | | | | | | | | | Earlier we loaded all local sessions at startup time and added to a cache, that was used when deleting expired sessions. We don't load local sessions at startup that anymore, but sessions are still added to cache as they are created. Local sessions that were leftover for some other reason (crash, failure in logic, whatnot) should still be deleted, which is fixed with this.
* | Remove flagHarald Musum2021-07-142-30/+6
|/ | | | Flag is set to false everywhere, remove it
* Merge pull request #18584 from vespa-engine/musum/cleanup-ConfigCurator-1Harald Musum2021-07-1226-914/+391
|\ | | | | Cleanup Curator and ConfigCurator usage [run-systemtest]
| * Minor fixesHarald Musum2021-07-123-5/+3
| |
| * Add back check for max node size when writing to ZooKeeperHarald Musum2021-07-117-14/+55
| |
| * Merge branch 'master' into musum/cleanup-ConfigCurator-1Harald Musum2021-07-0941-439/+353
| |\
| * | Use Curator instead of ConfigCurator, part 4Harald Musum2021-07-0914-306/+34
| | | | | | | | | | | | Remove ConfigCurator
| * | Use Curator instead of ConfigCurator, part 4Harald Musum2021-07-0913-309/+63
| | |
| * | Use Curator instead of ConfigCurator, part 3Harald Musum2021-07-0913-142/+108
| | |
| * | Use Curator instead of ConfigCurator, part 2Harald Musum2021-07-085-26/+40
| | |
| * | Use Curator instead of ConfigCurator, part 1Harald Musum2021-07-085-127/+131
| | |
| * | Remove unnecessary methodHarald Musum2021-07-022-12/+1
| | |
| * | Remove code for rewriting nodes with / in nameHarald Musum2021-07-021-23/+10
| | | | | | | | | | | | | | | Remove code, not used anymore (was used for config files in zookeeper many years ago)
* | | Merge pull request #18589 from vespa-engine/remove-container-jersey-2Harald Musum2021-07-111-6/+0
|\ \ \
| * | | Remove unused dep to container-jersey2gjoranv2021-07-091-6/+0
| | |/ | |/|
* / | Read session status may failHarald Musum2021-07-081-2/+2
|/ / | | | | | | | | | | | | | | | | | | When deleting expired sessions we delete many sessions at once, watchers react to sessions being removed, but since this takes some time handling a session being deleted may happen while other sessions are deleted. So make sure to handle the case where a session disappears while trying to read its status
* | Avoid checking and creating nodeHarald Musum2021-07-081-1/+5
| | | | | | | | | | If node is created between exists() and create() this will fail, just catch exception if node already exists and ignore it
* | Add stack trace, need to figure out who calls this a long time after session ↵Harald Musum2021-07-081-1/+1
| | | | | | | | is gone
* | Remove old clustercontroller status page endpointValerij Fredriksen2021-07-062-26/+0
| |
* | Expose status page for more distributor and storagenode under /application/v2Valerij Fredriksen2021-07-063-7/+50
| |
* | Merge pull request #18549 from vespa-engine/freva/status-storage-distributorHarald Musum2021-07-0638-425/+315
|\ \ | | | | | | Cleanup ApplicationHandler
| * | Cleanup ApplicationHandlerValerij Fredriksen2021-07-061-307/+145
| | |
| * | Move requests to own packageValerij Fredriksen2021-07-0612-16/+24
| | |
| * | Move responses to own packageValerij Fredriksen2021-07-0629-55/+74
| | |
| * | Use MessageResponse for delete applicationValerij Fredriksen2021-07-062-7/+5
| | |
| * | Move response classes to upper levelValerij Fredriksen2021-07-067-75/+102
| | |
* | | Use provided apache http client bundle from containerBjørn Christian Seime2021-07-061-0/+6
|/ /
* | Revert "Use provided apache http client bundle from container [run-systemtest]"Harald Musum2021-07-051-6/+0
| |
* | Allow reflective access to java.nioBjørn Christian Seime2021-07-051-0/+1
| |
* | Use provided apache http client bundle from containerBjørn Christian Seime2021-07-051-0/+6
|/
* Avoid NPE when getting application set for non-loaded sessionJon Marius Venstad2021-07-021-2/+1
|
* GC dead codeHarald Musum2021-07-021-3/+0
|
* Merge pull request #18500 from ↵Harald Musum2021-07-011-0/+6
|\ | | | | | | | | vespa-engine/hmusum/add-feature-flags-for-resource-limits Add feature flags for disk and memory resource limits
| * Add feature flags for disk and memory resource limitsHarald Musum2021-07-011-0/+6
| | | | | | | | Used when finding out when to block feed
* | Include exception message in case the parse failsHåkon Hallingstad2021-07-011-2/+2
| |
* | Print which tenant and session ID failed to loadHåkon Hallingstad2021-07-011-1/+2
|/
* Throw instead of returning null for getBytes()/getData()Harald Musum2021-06-306-46/+47
| | | | | Update callers to handle exception or check path existence before calling methods
* Remove unused feature flagHarald Musum2021-06-291-2/+0
|
* Always move searchdefinitions to schemas dirHarald Musum2021-06-252-20/+3
| | | | Do it by default, stop using feature flag
* Fail if unable to get active applicationHarald Musum2021-06-251-3/+2
|
* Don't swallow exception when unable to find file references in useHarald Musum2021-06-253-20/+23
| | | | Also keep 10 unused file references at all times
* Merge pull request #18381 from vespa-engine/freva/use-maxValerij Fredriksen2021-06-232-4/+4
|\ | | | | Use max value for resource utilization
| * Use max value for resource utilizationValerij Fredriksen2021-06-232-4/+4
| |
* | Remove warning produced by hc5 doing reflective access on SSLEngineImplBjørn Christian Seime2021-06-231-0/+1
| |
* | Merge pull request #18376 from ↵Henning Baldersheim2021-06-231-0/+3
|\ \ | | | | | | | | | | | | vespa-engine/balder/feature-flag-for-onnx-runtime-check-during-deploy Add feature falg for controlling onnx dryrun verification.
| * | Add feature falg for controlling onnx dryrun verification.Henning Baldersheim2021-06-231-0/+3
| | |