Skip to content
Snippets Groups Projects

Redesign Strategy, Load, and Resources data types

Merged Marcel Samir Becker requested to merge stu222169/theodolite-extensions:issue-259 into master
Compare and
37 files
+ 682
423
Compare changes
  • Side-by-side
  • Inline
Files
37
@@ -80,25 +80,41 @@ spec:
execution: # def execution config
description: Defines the overall parameter for the execution.
type: object
required: ["strategy", "duration", "repetitions", "restrictions"]
required: ["strategy", "duration", "repetitions"]
properties:
strategy:
description: Defines the used strategy for the execution, either 'LinearSearch' or 'BinarySearch'
metric:
type: string
# default: "demand"
# oneOf:
# - "demand"
# - "capacity"
strategy:
description: Defines the used strategy for the execution, either 'LinearSearch', 'BinarySearch' or 'InitialGuessSearch'
type: object
required: ["name"]
properties:
name:
type: string
#properties:
# type: object
restrictions:
description: List of restriction strategies used to delimit the search space.
type: array
items:
type: string
guessStrategy:
type: string
searchStrategy:
type: string
duration:
description: Defines the duration of each experiment in seconds.
type: integer
repetitions:
description: Numper of repititions for each experiments.
description: Number of repititions for each experiments.
type: integer
loadGenerationDelay:
description: Seconds to wait between the start of the SUT and the load generator.
type: integer
restrictions:
description: List of restriction strategys used to delimit the search space.
type: array
items:
type: string
configOverrides:
description: List of patchers that are used to override existing configurations.
type: array
Loading