summaryrefslogtreecommitdiffstats
path: root/flags
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Revert "Remove phrase-segmenting feature flag" MERGEOK"Jon Bratseth2020-09-091-6/+0
|
* Revert "Remove phrase-segmenting feature flag"Jon Marius Venstad2020-09-091-0/+6
|
* Merge pull request #14278 from ↵Jon Bratseth2020-09-091-6/+0
|\ | | | | | | | | vespa-engine/bratseth/remove-phrase-segmenting-feature-flag-rebased Remove phrase-segmenting feature flag
| * Remove phrase-segmenting feature flagJon Bratseth2020-09-041-6/+0
| |
* | send quota budget from controller (#14178)Andreas Eriksen2020-09-081-2/+9
| | | | | | | | limiting trial account instances to $5/hr overridable per tenant by feature flag
* | Merge pull request #14270 from vespa-engine/hmusum/remove-unused-flag-6Jon Marius Venstad2020-09-041-7/+0
|\ \ | | | | | | Remove unused flag
| * | Remove unused flagHarald Musum2020-09-031-7/+0
| |/
* / Change feature flag to control both core and max pool sizeBjørn Christian Seime2020-09-031-2/+2
|/ | | | | Change default multiplier from 1 to 4. Hardcode core pool size to be half of max size.
* Set USE_TENANT_META_DATA to true and stop using it in codeHarald Musum2020-09-021-1/+1
|
* Write tenant metadata if feature flag is trueHarald Musum2020-08-201-0/+7
| | | | | | | We want metadata to be able to find unused tenants, there is no way of tracking this today without tracking all sessions for a tenant and we allow sessions some lifetime, so this makes it impossible to find out in systems where there are a lot of short-lived deployments (test systems).
* Hide shared routing method endpointsMorten Tokle2020-08-101-0/+8
|
* Revert "Hide shared routing method endpoints"Henning Baldersheim2020-08-081-7/+0
|
* Hide shared routing methodsMorten Tokle2020-08-071-0/+7
|
* Add flags for controlling threads for feeding.Henning Baldersheim2020-08-041-0/+6
|
* Revert "Bjorncs/container thread pool"Henning Baldersheim2020-08-041-6/+0
|
* Merge branch 'master' into bjorncs/container-thread-poolHenning Baldersheim2020-08-041-7/+14
|\
| * add feature flag to use alternative certificate provider (#13948)Andreas Eriksen2020-07-301-0/+5
| |
| * Disable node-agent tasksValerij Fredriksen2020-07-221-1/+2
| |
| * Take config server lock in node-repositoryMartin Polden2020-07-221-0/+7
| |
| * Remove publish-direct-routing-endpoint flagMartin Polden2020-07-201-6/+0
| |
* | Add feature flag to scale core size for feeding thread poolsBjørn Christian Seime2020-07-141-0/+6
|/
* Enable weighted-dns-per-region by defaultMartin Polden2020-07-141-1/+1
|
* Add feature flags for rolling out skipping of feed threads.Henning Baldersheim2020-07-091-0/+16
|
* Control maintenance jobs with feature flagMartin Polden2020-07-091-0/+5
|
* Remove feature flag 'jdisc-health-check-proxy-client-timeout'Bjørn Christian Seime2020-07-091-6/+0
|
* Update comment to be correct.Henning Baldersheim2020-07-061-1/+1
|
* Add feature flag control of response sequencer.Henning Baldersheim2020-07-061-0/+10
|
* Merge pull request #13791 from ↵Henning Baldersheim2020-07-031-4/+4
|\ | | | | | | | | vespa-engine/vekterli/add-feature-flag-for-content-node-btree-db Add feature flag for content node B-tree bucket DB (and remove distributor B-tree flag)
| * Add feature flag for content node B-tree bucket DBTor Brede Vekterli2020-07-021-4/+4
| | | | | | | | Also remove feature flag for distributor B-tree DB
* | Reinstate old flag to remove it more orderly laterØyvind Grønnesby2020-07-031-0/+6
| |
* | Create generic flag for IPs we want to blockØyvind Grønnesby2020-07-021-6/+12
|/
* Add a reasonable default.Henning Baldersheim2020-07-011-1/+1
|
* Add flag for rolling out feed sequencer change.Henning Baldersheim2020-07-011-0/+6
|
* Merge pull request #13762 from ↵Henning Baldersheim2020-07-011-1/+1
|\ | | | | | | | | vespa-engine/vekterli/flip-distributor-btree-db-feature-flag-default Flip feature flag default for distributor B-tree DB to true
| * Flip feature flag default for distributor B-tree DB to trueTor Brede Vekterli2020-07-011-1/+1
| | | | | | | | Flag itself will be removed shortly once this has rolled out smoothly.
* | Support duplicate regions within same global endpointMartin Polden2020-06-301-0/+7
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | To support duplicate regions within a global endpoint we create a combination of latency and weighted alias targets. In the following examples an application exists in `us-west-2`, `us-east-1a` and `us-east-1b`. Before this change global endpoints pointed directly to the zone endpoint: ``` (latency) ALIAS app1.tenant1.global.vespa.example.com -> app1.tenant1.us-west-2.vespa.example.com (latency) ALIAS app1.tenant1.global.vespa.example.com -> app1.tenant1.us-east-1a.vespa.example.com (latency) ALIAS app1.tenant1.global.vespa.example.com -> app1.tenant1.us-east-1b.vespa.example.com ``` After this change we introduce an additional level of names by creating a weighted record per region: ``` (latency) ALIAS app1.tenant1.global.vespa.example.com -> app1.tenant1.us-west-2-w.vespa.example.com |- (weighted) ALIAS app1.tenant1.us-west-2-w.vespa.example.com -> app1.tenant1.us-west-2.vespa.example.com (latency) ALIAS app1.tenant1.global.vespa.example.com -> app1.tenant1.us-east-1-w.vespa.example.com |- (weighted) ALIAS app1.tenant1.us-east-1-w.vespa.example.com -> app1.tenant1.us-east-1a.vespa.example.com |- (weighted) ALIAS app1.tenant1.us-east-1-w.vespa.example.com -> app1.tenant1.us-east-1b.vespa.example.com ``` Toggling global routing status now adjusts the weight (`0 = out`) instead of removing records as this simplified the code.
* Do not need zone dimensionØyvind Grønnesby2020-06-291-2/+1
|
* Create feature flag to limit internal accessØyvind Grønnesby2020-06-291-0/+7
|
* Merge pull request #13682 from vespa-engine/mpolden/remove-flagMartin Polden2020-06-251-7/+0
|\ | | | | Remove configserver-provision-lb flag
| * Remove configserver-provision-lb flagMartin Polden2020-06-241-7/+0
| |
* | make tenant node quota adjustable by feature flag (#13697)Andreas Eriksen2020-06-251-0/+7
|/
* Set publish-direct-routing-endpoint default to trueBjorn Meland2020-06-231-1/+1
|
* Enable configserver-provision-lb by defaultMartin Polden2020-06-221-1/+1
|
* Provision load balancer for controller clusterMartin Polden2020-06-191-0/+7
|
* Remove unused USE_NEW_VESPA_RPMS flagHåkon Hallingstad2020-06-171-7/+0
|
* Change default value, all zones already use 'true'Harald Musum2020-06-171-1/+1
|
* Merge pull request #13591 from ↵Henning Baldersheim2020-06-161-5/+0
|\ | | | | | | | | vespa-engine/balder/gc-legacy-docproc-loadbalancing-code Legacy non-balancing loadbalancer is now a thing of the past.
| * Default, and only option, is now 'adaptive'Henning Baldersheim2020-06-151-5/+0
| |
* | Revert "Bjorncs/container thread pool"Bjørn Christian Seime2020-06-151-6/+0
|/
* Add feature flag to scale core size for feeding thread poolsBjørn Christian Seime2020-06-151-0/+6
|