Skip to content
Snippets Groups Projects
Commit 1527e656 authored by Sören Henning's avatar Sören Henning
Browse files

Fix outdated docs

parent ce3fc807
No related branches found
No related tags found
No related merge requests found
Pipeline #8929 passed
...@@ -56,7 +56,7 @@ An Execution always refers to a Benchmark. For the Execution to run, the Benchma ...@@ -56,7 +56,7 @@ An Execution always refers to a Benchmark. For the Execution to run, the Benchma
As a Benchmark may define multiple supported load and resource types, an Execution has to pick exactly one of each by its name. Additionally, it defines the set of load values and resource values the benchmark should be executed with. As a Benchmark may define multiple supported load and resource types, an Execution has to pick exactly one of each by its name. Additionally, it defines the set of load values and resource values the benchmark should be executed with.
Both these values are represented as integers, which are interpreted in a [Benchmark-specific way](creating-a-benchmark#load-and-resource-types) to configure the SUT and load generator. Both these values are represented as integers, which are interpreted in a [Benchmark-specific way](creating-a-benchmark#load-and-resource-types) to configure the SUT and load generator.
Similarly, an Execution can select a subset of the [SLOs defined in the Benchmark](creating-a-benchmark#service-level-objectives-slos). Additionally, these SLOs can be configured by their `properties`. Similarly, an Execution must select a subset of the [SLOs defined in the Benchmark](creating-a-benchmark#service-level-objectives-slos). Additionally, these SLOs can be configured by their `properties`.
<!-- TODO: What happpens if slos are not set? --> <!-- TODO: What happpens if slos are not set? -->
## Experimental Setup ## Experimental Setup
......
...@@ -68,13 +68,17 @@ spec: ...@@ -68,13 +68,17 @@ spec:
resources: resources:
resourceType: "Instances" # (5) chose one of the benchmark's resource types resourceType: "Instances" # (5) chose one of the benchmark's resource types
resourceValues: [1, 2] # (6) select a set of resource amounts resourceValues: [1, 2] # (6) select a set of resource amounts
slos:
- name: "lag trend"
properties:
threshold: 2000
execution: execution:
strategy: strategy:
name: "RestrictionSearch" # (8) chose a search strategy name: "RestrictionSearch" # (8) chose a search strategy
restrictions: ["LowerBound"] # (9) configure the search strategy restrictions: ["LowerBound"] # (9) configure the search strategy
searchStrategy: "LinearSearch" # (10) configure the search strategy (cont.) searchStrategy: "LinearSearch" # (10) configure the search strategy (cont.)
duration: 300 # (11) set the experiment duration in seconds duration: 300 # (11) set the experiment duration in seconds
repetitions: # (12) set the number of repetitions repetitions: 1 # (12) set the number of repetitions
loadGenerationDelay: 30 # (13) configure a delay before load generation loadGenerationDelay: 30 # (13) configure a delay before load generation
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment