Skip to main content

Tune to a Service

At this point, there is one remaining section in a service.yaml that needs discussing. The configuration field. It allows for convenient configuration and over-the-air tuning of a service.

Elias Groot

Elias Groot

Software Lead, Project Administrator

Prerequisites

Configuration Values

Instead of hardcoding configuration values in your service's source code, you can define them in your service.yaml. Then, you do not need to rebuild your service when altering configuration values. Open your template service's declaration.

service.yaml
...
configuration:
- name: speed
type: number
value: 0.2
tunable: true

The above tells us that there is one configuration value: speed in the form of number (this is represented as a float value). Its value is 0.2. The tunable field allows the roverlib to change this value during runtime of the service.

To access configuration values, you can use the APIs provided by roverlib for your language. We highly recommend using the service.yaml for keeping track of your service parameters.

roverlib-go exposes the GetFloatSafe() and GetStringSafe() methods, that can be used to read a float or string as defined in the service.yaml file, like so:

src/main.go
func run(service roverlib.Service, configuration *roverlib.ServiceConfiguration) error {
tunableSpeed, err := configuration.GetFloatSafe("speed")
if err != nil {
return fmt.Errorf("Failed to get configuration: %v", err)
}

for {
// In your main loop, use GetFloatSafe() every iteration, to make sure you get the latest tuning value
tunableSpeed, err := configuration.GetFloatSafe("speed")
if err != nil {
return fmt.Errorf("Failed to get configuration: %v", err)
}
}
}

Try Tuning

Experiment with reading tunable variables by printing them every iteration. Then, reupload your service and start roverctl-web in debug mode. Similar to the example pipeline, open the tuning tab and try sending different values to your service. They should be represented in the logs.