summaryrefslogtreecommitdiffstats
path: root/flags
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #8018 from vespa-engine/hakonhall/export-flagdata-wire-formatValerij Fredriksen2019-01-043-7/+31
|\ | | | | Export FlagData wire format
| * Export FlagData wire formatHåkon Hallingstad2019-01-043-7/+31
| | | | | | | | | | | | | | The FlagData wire format (WireFlagData and friends) is useful with e.g. Jersey JAX-RS client when Jackson is used as a serializer. Therefore, export it. Also, add a bit more sanity-checking on using Flags.Replacer during tests.
* | Add guice and annotationsHåkon Hallingstad2019-01-042-11/+27
| |
* | Remove unnecessary dependencies from flags moduleHåkon Hallingstad2019-01-041-2/+18
|/
* Typed flag classesHåkon Hallingstad2019-01-0320-157/+452
| | | | | | | | | | This reintroduces the non-generic flag classes: - a value() returns the primitive type for flags wrapping a primitive type - easier to use in testing - Serializer is moved to internals of typed class Defines the flag backed by boolean BooleanFlag instead of FeatureFlag since not all boolean flags are necessarily guarding a feature.
* Include flag id in flag data and other review fixesHåkon Hallingstad2019-01-026-20/+31
|
* Expose defined flagsHåkon Hallingstad2018-12-315-5/+47
| | | | | | | | | | - Exposes all defined flags at /flags/v1/defined. - Defines all hosted flags in Flags. Perhaps later we can support hiding hosted flags (aka support different set of flags for different teams). - Categorizes /flags/v1 as a hosted vespa operation for /zone/v2. Also fixes component definitions in services.xml. The affected bundles have been verified at an example config server.
* Configserver flags REST APIHåkon Hallingstad2018-12-3038-363/+1427
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds a new ZooKeeper backed flag source. It is defined in a new module configserver-flags to allow as many as possible config server modules to depend on it by minimizing dependencies. The content of the ZK backed flag source can be viewed and modified through REST API on the config server/controller. The data stored per flag looks like { "rules": [ { "conditions": [ { "type": "whitelist", "dimension": "hostname", "values": ["host1"] } ], "value": true } ] } typical for enabling a feature flag on host1. 2 types of conditions are so far supported: whitelist and blacklist. All the conditions must match in order for the value to apply. If the value is null (or absent), the default value will be used. At the time the flag's value is retrieved, it is resolved against the conditions with the current zone, hostname, and/or application. The same data structure is used for FileFlagSource for files in /etc/vespa/flags with the ".2" extension. The FlagSource component injected in the config server is changed to: 1. Return the flag value if specified in /etc/vespa/flags, or otherwise 2. return flag value from ZooKeeper (same as REST API) The current flags (module) is also changed: - All flags must be defined in com.yahoo.vespa.flags.Flags. This allows the ZK backed flag source additional sanity checking when modifying flags. - If it makes sense to have different flag value depending on e.g. the application, then at some point before the value is retrieved, one has to bind the flag to that application (using with() to set up the fetch vector). Future changes would be to 0. make a merged FlagSource in host admin, 1. add support for viewing and modifying feature flags in dashboard, 2. in hv tool.
* Revert "Revert "Add infrastructure applications to DuperModel""Håkon Hallingstad2018-12-031-6/+0
|
* Revert "Add infrastructure applications to DuperModel"Harald Musum2018-12-031-0/+6
|
* Add OWNERS and README.mdHåkon Hallingstad2018-12-032-0/+5
|
* Install fat flags jarHåkon Hallingstad2018-12-031-0/+2
|
* Add infrastructure applications to DuperModelHåkon Hallingstad2018-11-301-6/+0
| | | | | | | | | | | | | | | | | | | | | | | 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.
* Use correct Inject for componentsHåkon Hallingstad2018-11-271-1/+2
|
* Require default value for FeatureFlagHåkon Hallingstad2018-11-262-15/+7
|
* Remove Optional classesHåkon Hallingstad2018-11-267-148/+72
| | | | | | | | | | | After review & new ideas: - All Optional classes have been removed: They must take a default argument to avoid having clients test whether the flag has been set or not, in order to allow local file flag source to undo a file flag setting from config server. - FeatureFlag is now backed by FlagSource::getString, and FlagSource::hasFeature has been removed. - FeatureFlag now allows default-true to facilitate default-enabled features
* Remove change to jacksonClass typeHåkon Hallingstad2018-11-251-1/+1
|
* Replace timeout- with io-exceptionHåkon Hallingstad2018-11-252-4/+3
|
* Add flags moduleHåkon Hallingstad2018-11-2315-0/+691
FileFlagSource reads flags from files in /etc/vespa/flags and is a component that can be injected in host admin, config server, etc. A flag named foo corresponds to filename foo. In general a FlagSource manages: - Feature flags: A feature is either set (true/enabled) or otherwise false. Touching a file foo means the feature flag foo is set (true). - Value flags: Either a String or empty if not set. The String corresponds to the file content. The plan is to make the config server another source of flags. A unified FlagSource can merge the two sources with some priority and used in e.g. parts of node-admin. In other parts one would only have access to the file source. Defines various flag facades: - FeatureFlag: Used to test whether a feature has been enabled or not. - IntFlag - JacksonFlag: Deserializes JSON to Jackson class, or return default if unset. - LongFlag - OptionalJacksonFlag: Deserializes JSON to Jackson class, or empty if unset. - OptionalStringFlag - StringFlag This is part of removing some of the last Chef recipes. Some minor tweaks have been necessary as part of this and are included in this PR (test whether a systemd service exists, task-friendly file deletion, allow capitalized letters in YUM package name).