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

Improve logic of theodolite operator

parent b1bdbfc1
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!106Introduce a Theodolite operator,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
......@@ -6,6 +6,8 @@ import io.fabric8.kubernetes.client.informers.SharedInformer
import mu.KotlinLogging
import theodolite.benchmark.BenchmarkExecution
import theodolite.benchmark.KubernetesBenchmark
import java.util.Queue
import java.util.LinkedList
private val logger = KotlinLogging.logger {}
......@@ -15,10 +17,9 @@ class TheodoliteController(
val informerBenchmarkExecution: SharedInformer<BenchmarkExecution>,
val informerBenchmarkType: SharedInformer<KubernetesBenchmark>
) {
var execution: BenchmarkExecution? = null
var benchmarkType: KubernetesBenchmark? = null
var executor: TheodoliteExecutor? = null
var updated: Boolean = true
var executor: TheodoliteExecutor = TheodoliteExecutor()
val executionsQueue: Queue<BenchmarkExecution> = LinkedList<BenchmarkExecution>()
val benchmarks: MutableMap<String, KubernetesBenchmark> = HashMap()
/**
* Adds the EventHandler to kubernetes
......@@ -27,33 +28,48 @@ class TheodoliteController(
informerBenchmarkExecution.addEventHandler(object : ResourceEventHandler<BenchmarkExecution> {
override fun onAdd(benchmarkExecution: BenchmarkExecution) {
execution = benchmarkExecution
executionsQueue.add(benchmarkExecution)
}
override fun onUpdate(oldExecution: BenchmarkExecution, newExecution: BenchmarkExecution) {
execution = newExecution
updated = true
shutdown()
if (executor.getExecution().name == newExecution.name) {
executor.stop()
executor.setExecution(newExecution)
executor.run()
} else {
executionsQueue.remove(oldExecution)
onAdd(newExecution)
}
}
override fun onDelete(benchmarkExecution: BenchmarkExecution, b: Boolean) {
shutdown()
override fun onDelete(execution: BenchmarkExecution, b: Boolean) {
if (executor.getExecution().name == execution.name) {
executor.stop()
} else {
executionsQueue.remove(execution)
}
}
})
informerBenchmarkType.addEventHandler(object : ResourceEventHandler<KubernetesBenchmark> {
override fun onAdd(kubernetesBenchmark: KubernetesBenchmark) {
benchmarkType = kubernetesBenchmark
benchmarks[kubernetesBenchmark.name] = kubernetesBenchmark
}
override fun onUpdate(oldBenchmark: KubernetesBenchmark, newBenchmark: KubernetesBenchmark) {
benchmarkType = newBenchmark
updated = true
shutdown()
onAdd(newBenchmark)
if (executor.getBenchmark().name == oldBenchmark.name) {
executor.stop()
executor.setBenchmark(newBenchmark)
executor.run()
}
}
override fun onDelete(kubernetesBenchmark: KubernetesBenchmark, b: Boolean) {
shutdown()
override fun onDelete(benchmark: KubernetesBenchmark, b: Boolean) {
benchmarks.remove(benchmark.name)
if(executor.getBenchmark().name == benchmark.name) {
executor.stop()
}
}
})
}
......@@ -70,17 +86,18 @@ class TheodoliteController(
@Synchronized
private fun reconcile() {
val localExecution = this.execution
val localType = this.benchmarkType
if (localType is KubernetesBenchmark && localExecution is BenchmarkExecution && updated) {
executor = TheodoliteExecutor(config = localExecution, kubernetesBenchmark = localType)
executor!!.run()
updated = false
while(executionsQueue.isNotEmpty() && !executor.isRunning) {
val execution = executionsQueue.poll()
val benchmark = benchmarks[execution.name]
if (benchmark == null) {
logger.error { "No benchmark found for execution ${execution.name}" }
executionsQueue.add(execution)
} else {
executor.setExecution(execution)
executor.setBenchmark(benchmark)
executor.run()
}
}
}
private fun shutdown() {
Shutdown(benchmarkExecution = execution!!, benchmark = benchmarkType!!).run()
}
}
package theodolite.execution
import mu.KotlinLogging
import theodolite.benchmark.BenchmarkExecution
import theodolite.benchmark.KubernetesBenchmark
import theodolite.patcher.PatcherDefinitionFactory
......@@ -10,11 +11,29 @@ import theodolite.util.LoadDimension
import theodolite.util.Resource
import theodolite.util.Results
import java.time.Duration
import kotlin.system.exitProcess
private val logger = KotlinLogging.logger {}
class TheodoliteExecutor(
private val config: BenchmarkExecution,
private val kubernetesBenchmark: KubernetesBenchmark
private var config: BenchmarkExecution,
private var kubernetesBenchmark: KubernetesBenchmark
) {
private val executionThread = Thread {
if(config == null || kubernetesBenchmark == null) {
logger.error { "Execution or Benchmark not found" }
}else {
val config = buildConfig()
// execute benchmarks for each load
for (load in config.loads) {
config.compositeStrategy.findSuitableResource(load, config.resources)
}
}
}
var isRunning = false
private fun buildConfig(): Config {
val results = Results()
......@@ -62,12 +81,31 @@ class TheodoliteExecutor(
)
}
fun getExecution(): BenchmarkExecution {
return this.config
}
fun getBenchmark(): KubernetesBenchmark {
return this.kubernetesBenchmark
}
fun run() {
val config = buildConfig()
isRunning = true
executionThread.run()
}
fun stop() {
isRunning = false
executionThread.interrupt()
}
fun setExecution(config: BenchmarkExecution) {
this.config = config
}
fun setBenchmark(benchmark: KubernetesBenchmark) {
this.kubernetesBenchmark = benchmark
}
constructor() {}
// execute benchmarks for each load
for (load in config.loads) {
config.compositeStrategy.findSuitableResource(load, config.resources)
}
}
}
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