Skip to content
Snippets Groups Projects
Commit 5c39aa6c authored by Benedikt Wetzel's avatar Benedikt Wetzel
Browse files

merge upstream master

parents 7448d5ae c04b712f
No related branches found
No related tags found
1 merge request!171Introduce ResourceSets to make loading of resource files more flexible
Showing
with 109 additions and 52 deletions
cff-version: "1.1.0" cff-version: "1.1.0"
message: "If you use Theodolite, please cite it using these metadata." message: "If you use Theodolite, please cite it using these metadata."
authors: authors:
- - family-names: Henning
family-names: Henning
given-names: "Sören" given-names: "Sören"
orcid: "https://orcid.org/0000-0001-6912-2549" orcid: "https://orcid.org/0000-0001-6912-2549"
- - family-names: Hasselbring
family-names: Hasselbring
given-names: Wilhelm given-names: Wilhelm
orcid: "https://orcid.org/0000-0001-6625-4335" orcid: "https://orcid.org/0000-0001-6625-4335"
title: Theodolite title: Theodolite
...@@ -14,3 +12,18 @@ version: "0.4.0" ...@@ -14,3 +12,18 @@ version: "0.4.0"
repository-code: "https://github.com/cau-se/theodolite" repository-code: "https://github.com/cau-se/theodolite"
license: "Apache-2.0" license: "Apache-2.0"
doi: "10.1016/j.bdr.2021.100209" doi: "10.1016/j.bdr.2021.100209"
preferred-citation:
type: article
authors:
- family-names: Henning
given-names: "Sören"
orcid: "https://orcid.org/0000-0001-6912-2549"
- family-names: Hasselbring
given-names: Wilhelm
orcid: "https://orcid.org/0000-0001-6625-4335"
doi: "10.1016/j.bdr.2021.100209"
journal: "Big Data Research"
month: 7
title: "Theodolite: Scalability Benchmarking of Distributed Stream Processing Engines in Microservice Architectures"
volume: 25
year: 2021
...@@ -52,20 +52,23 @@ spec: ...@@ -52,20 +52,23 @@ spec:
type: array type: array
items: items:
type: object type: object
required: ["sloType", "threshold", "prometheusUrl", "externalSloUrl", "offset", "warmup"] required: ["sloType", "prometheusUrl", "offset"]
properties: properties:
sloType: sloType:
description: The type of the SLO. It must match 'lag trend'.
type: string type: string
threshold:
type: integer
prometheusUrl: prometheusUrl:
type: string description: Connection string for Promehteus.
externalSloUrl:
type: string type: string
offset: offset:
description: Hours by which the start and end timestamp will be shifted (for different timezones).
type: integer type: integer
warmup: properties:
type: integer description: (Optional) SLO specific additional arguments.
type: object
additionalProperties: true
x-kubernetes-map-type: "granular"
default: {}
execution: # def execution config execution: # def execution config
type: object type: object
required: ["strategy", "duration", "repetitions", "restrictions"] required: ["strategy", "duration", "repetitions", "restrictions"]
......
...@@ -60,26 +60,23 @@ spec: ...@@ -60,26 +60,23 @@ spec:
type: array type: array
items: items:
type: object type: object
required: ["sloType", "threshold", "prometheusUrl", "externalSloUrl", "offset", "warmup"] required: ["sloType", "prometheusUrl", "offset"]
properties: properties:
sloType: sloType:
description: The type of the SLO. It must match 'lag trend'. description: The type of the SLO. It must match 'lag trend'.
type: string type: string
threshold:
description: The threshold the SUT should meet for a sucessful experiment.
type: integer
prometheusUrl: prometheusUrl:
description: Connection string for Promehteus. description: Connection string for Promehteus.
type: string type: string
externalSloUrl:
description: Connection string for a external slo analysis.
type: string
offset: offset:
description: Hours by which the start and end timestamp will be shifted (for different timezones). description: Hours by which the start and end timestamp will be shifted (for different timezones).
type: integer type: integer
warmup: properties:
description: Seconds of time that are ignored in the analysis. description: (Optional) SLO specific additional arguments.
type: integer type: object
additionalProperties: true
x-kubernetes-map-type: "granular"
default: {}
execution: # def execution config execution: # def execution config
description: Defines the overall parameter for the execution. description: Defines the overall parameter for the execution.
type: object type: object
...@@ -152,4 +149,4 @@ spec: ...@@ -152,4 +149,4 @@ spec:
jsonPath: .metadata.creationTimestamp jsonPath: .metadata.creationTimestamp
subresources: subresources:
status: {} status: {}
scope: Namespaced scope: Namespaced
\ No newline at end of file
...@@ -12,11 +12,12 @@ spec: ...@@ -12,11 +12,12 @@ spec:
resourceValues: [1, 2, 3, 4, 5] resourceValues: [1, 2, 3, 4, 5]
slos: slos:
- sloType: "lag trend" - sloType: "lag trend"
threshold: 2000 prometheusUrl: "http://prometheus-operated:9090"
prometheusUrl: "http://localhost:9090" # "http://prometheus-operated:9090"
externalSloUrl: "http://localhost:80/evaluate-slope"
offset: 0 offset: 0
warmup: 60 # in seconds properties:
threshold: 2000
externalSloUrl: "http://localhost:80/evaluate-slope"
warmup: 60 # in seconds
execution: execution:
strategy: "LinearSearch" strategy: "LinearSearch"
duration: 300 # in seconds duration: 300 # in seconds
......
...@@ -8,11 +8,12 @@ resources: ...@@ -8,11 +8,12 @@ resources:
resourceValues: [1, 2, 3, 4, 5] resourceValues: [1, 2, 3, 4, 5]
slos: slos:
- sloType: "lag trend" - sloType: "lag trend"
threshold: 2000
prometheusUrl: "http://prometheus-operated:9090" prometheusUrl: "http://prometheus-operated:9090"
externalSloUrl: "http://localhost:80/evaluate-slope"
offset: 0 offset: 0
warmup: 60 # in seconds properties:
threshold: 2000
externalSloUrl: "http://localhost:80/evaluate-slope"
warmup: 60 # in seconds
execution: execution:
strategy: "LinearSearch" strategy: "LinearSearch"
duration: 300 # in seconds duration: 300 # in seconds
...@@ -20,4 +21,4 @@ execution: ...@@ -20,4 +21,4 @@ execution:
loadGenerationDelay: 30 # in seconds, optional field, default is 0 seconds loadGenerationDelay: 30 # in seconds, optional field, default is 0 seconds
restrictions: restrictions:
- "LowerBound" - "LowerBound"
configOverrides: [] configOverrides: []
\ No newline at end of file
...@@ -62,11 +62,9 @@ class BenchmarkExecution : KubernetesResource { ...@@ -62,11 +62,9 @@ class BenchmarkExecution : KubernetesResource {
@RegisterForReflection @RegisterForReflection
class Slo : KubernetesResource { class Slo : KubernetesResource {
lateinit var sloType: String lateinit var sloType: String
var threshold by Delegates.notNull<Int>()
lateinit var prometheusUrl: String lateinit var prometheusUrl: String
lateinit var externalSloUrl: String
var offset by Delegates.notNull<Int>() var offset by Delegates.notNull<Int>()
var warmup by Delegates.notNull<Int>() lateinit var properties: MutableMap<String, String>
} }
/** /**
......
...@@ -64,9 +64,8 @@ class AnalysisExecutor( ...@@ -64,9 +64,8 @@ class AnalysisExecutor(
val sloChecker = SloCheckerFactory().create( val sloChecker = SloCheckerFactory().create(
sloType = slo.sloType, sloType = slo.sloType,
externalSlopeURL = slo.externalSloUrl, properties = slo.properties,
threshold = slo.threshold, load = load
warmup = slo.warmup
) )
result = sloChecker.evaluate(prometheusData) result = sloChecker.evaluate(prometheusData)
......
package theodolite.evaluation package theodolite.evaluation
import theodolite.util.LoadDimension
/** /**
* Factory used to potentially create different [SloChecker]s. * Factory used to potentially create different [SloChecker]s.
* Supports: lag type. * Supports: lag type.
...@@ -8,28 +10,66 @@ class SloCheckerFactory { ...@@ -8,28 +10,66 @@ class SloCheckerFactory {
/** /**
* Creates different [SloChecker]s. * Creates different [SloChecker]s.
* Supports: lag type. *
* Supports: `lag trend` and `lag trend percent` as arguments for `sloType`
*
* ### `lag trend`
* Creates an [ExternalSloChecker] with defined parameters.
*
* The properties map needs the following fields:
* - `externalSlopeURL`: Url to the concrete SLO checker service.
* - `threshold`: fixed value used for the slope.
* - `warmup`: time from the beginning to skip in the analysis.
*
*
* ### `lag trend percent`
* Creates an [ExternalSloChecker] with defined parameters.
* The required threshold is computed using a percentage and the load of the experiment.
*
* The properties map needs the following fields:
* - `externalSlopeURL`: Url to the concrete SLO checker service.
* - `percent`: of the executed load that is accepted for the slope.
* - `warmup`: time from the beginning to skip in the analysis.
* *
* @param sloType Type of the [SloChecker]. * @param sloType Type of the [SloChecker].
* @param externalSlopeURL Url to the concrete [SloChecker]. * @param properties map of properties to use for the SLO checker creation.
* @param threshold for the [SloChecker]. * @param load that is executed in the experiment.
* @param warmup for the [SloChecker].
* *
* @return A [SloChecker] * @return A [SloChecker]
* @throws IllegalArgumentException If [sloType] not supported. * @throws IllegalArgumentException If [sloType] not supported.
*/ */
fun create( fun create(
sloType: String, sloType: String,
externalSlopeURL: String, properties: MutableMap<String, String>,
threshold: Int, load: LoadDimension
warmup: Int
): SloChecker { ): SloChecker {
return when (sloType) { return when (sloType) {
"lag trend" -> ExternalSloChecker( "lag trend" -> ExternalSloChecker(
externalSlopeURL = externalSlopeURL, externalSlopeURL = properties["externalSloUrl"]
threshold = threshold, ?: throw IllegalArgumentException("externalSloUrl expected"),
warmup = warmup threshold = properties["threshold"]?.toInt() ?: throw IllegalArgumentException("threshold expected"),
warmup = properties["warmup"]?.toInt() ?: throw IllegalArgumentException("warmup expected")
) )
"lag trend percent" -> {
if (!properties["loadType"].equals("NumSensors")) {
throw IllegalArgumentException("Percent Threshold is only allowed with load type NumSensors")
}
var thresholdPercent =
properties["percent"]?.toDouble()
?: throw IllegalArgumentException("percent for threshold expected")
if (thresholdPercent < 0.0 || thresholdPercent > 1.0) {
throw IllegalArgumentException("Threshold percent need to be an Double in the range between 0.0 and 1.0 (inclusive)")
}
// cast to int, as rounding is not really necessary
var threshold = (load.get() * thresholdPercent).toInt()
ExternalSloChecker(
externalSlopeURL = properties["externalSloUrl"]
?: throw IllegalArgumentException("externalSloUrl expected"),
threshold = threshold,
warmup = properties["warmup"]?.toInt() ?: throw IllegalArgumentException("warmup expected")
)
}
else -> throw IllegalArgumentException("Slotype $sloType not found.") else -> throw IllegalArgumentException("Slotype $sloType not found.")
} }
} }
......
...@@ -55,6 +55,9 @@ class TheodoliteExecutor( ...@@ -55,6 +55,9 @@ class TheodoliteExecutor(
this.kubernetesBenchmark.loadTypes this.kubernetesBenchmark.loadTypes
) )
// Add load type to check if the percentage lag trend is applicable
config.slos.forEach { it.properties["loadType"] = config.load.loadType }
executor = executor =
BenchmarkExecutorImpl( BenchmarkExecutorImpl(
benchmark = kubernetesBenchmark, benchmark = kubernetesBenchmark,
......
...@@ -13,11 +13,12 @@ spec: ...@@ -13,11 +13,12 @@ spec:
resourceValues: [1, 2, 3, 4, 5] resourceValues: [1, 2, 3, 4, 5]
slos: slos:
- sloType: "lag trend" - sloType: "lag trend"
threshold: 2000
prometheusUrl: "http://prometheus-operated:9090" prometheusUrl: "http://prometheus-operated:9090"
externalSloUrl: "http://localhost:80/evaluate-slope"
offset: 0 offset: 0
warmup: 60 # in seconds properties:
threshold: 2000
externalSloUrl: "http://localhost:80/evaluate-slope"
warmup: 60 # in seconds
execution: execution:
strategy: "LinearSearch" strategy: "LinearSearch"
duration: 300 # in seconds duration: 300 # in seconds
......
...@@ -13,11 +13,12 @@ spec: ...@@ -13,11 +13,12 @@ spec:
resourceValues: [1, 2, 3, 4, 5] resourceValues: [1, 2, 3, 4, 5]
slos: slos:
- sloType: "lag trend" - sloType: "lag trend"
threshold: 2000
prometheusUrl: "http://prometheus-operated:9090" prometheusUrl: "http://prometheus-operated:9090"
externalSloUrl: "http://localhost:80/evaluate-slope"
offset: 0 offset: 0
warmup: 60 # in seconds properties:
threshold: 2000
externalSloUrl: "http://localhost:80/evaluate-slope"
warmup: 60 # in seconds
execution: execution:
strategy: "LinearSearch" strategy: "LinearSearch"
duration: 300 # in seconds duration: 300 # in seconds
......
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