Resources
A Benthos configuration file has an optional section called resources
, in which it's possible to specify one or more named instances of inputs, caches, processors, rate limits and outputs. When components are declared as a resource they can be referenced by their name throughout your configuration. Only one instance of each named resource is created, but it is safe to use it in multiple places as they can be shared without consequence.
Some components such as caches and rate limits can only be created as a resource. However, for components where it's optional there are a few reasons why it might be advantageous to do so.
#
ReusabilitySometimes it's necessary to use a rather large component multiple times. Instead of copy/pasting the configuration or using YAML anchors you can define your component as a resource.
In the following example we want to make an HTTP request with our payloads. Occasionally the payload might get rejected due to garbage within its contents, and so we catch these rejected requests, attempt to "cleanse" the contents and try to make the same HTTP request again. Since the HTTP request component is quite large (and likely to change over time) we make sure to avoid duplicating it by defining it as a resource get_foo
:
#
Feature Toggling#
With Environment VariablesThere are two ways of using resources for feature toggling, the first is to define your feature components with unique names and then apply the old switcheroo with environment variables to select the one you wish to execute:
Then when you execute Benthos use the environment variable to choose your resource: FEATURE_REQUEST=get_foo benthos -c ./your_config.yaml
.
#
With ImportsHowever, Benthos allows you to import resources from separate files with the cli flag -r
or -resources
, which can be a useful way to switch out resources with common names based on your chosen environment. For example, with a main configuration file config.yaml
:
And then two resource files, one stored at the path ./staging/request.yaml
:
And another stored at the path ./production/request.yaml
:
We can select our chosen resource by changing which file we import, either running:
Or:
These flags also support wildcards, which allows you to import an entire directory of resource files like benthos -r "./staging/*.yaml" -c ./config.yaml
.