Skip to content
Snippets Groups Projects
Commit 3f5c6664 authored by Lorenz Boguhn's avatar Lorenz Boguhn
Browse files

Refactoring

parent a4577aaa
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
Showing
with 34 additions and 31 deletions
...@@ -41,7 +41,7 @@ RUN microdnf install curl ca-certificates ${JAVA_PACKAGE} \ ...@@ -41,7 +41,7 @@ RUN microdnf install curl ca-certificates ${JAVA_PACKAGE} \
&& echo "securerandom.source=file:/dev/urandom" >> /etc/alternatives/jre/lib/security/java.security && echo "securerandom.source=file:/dev/urandom" >> /etc/alternatives/jre/lib/security/java.security
# Configure the JAVA_OPTIONS, you can add -XshowSettings:vm to also display the heap size. # Configure the JAVA_OPTIONS, you can add -XshowSettings:vm to also display the heap size.
ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager -Dquarkus.package.main-class=TheodoliteOperator" ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager"
COPY build/lib/* /deployments/lib/ COPY build/lib/* /deployments/lib/
COPY build/*-runner.jar /deployments/app.jar COPY build/*-runner.jar /deployments/app.jar
COPY config/ /deployments/config/ COPY config/ /deployments/config/
......
...@@ -2,5 +2,4 @@ package theodolite.benchmark ...@@ -2,5 +2,4 @@ package theodolite.benchmark
import io.fabric8.kubernetes.client.CustomResourceList import io.fabric8.kubernetes.client.CustomResourceList
class BenchmarkExecutionList : CustomResourceList<BenchmarkExecution>() { class BenchmarkExecutionList : CustomResourceList<BenchmarkExecution>()
} \ No newline at end of file
\ No newline at end of file
package theodolite.benchmark; package theodolite.benchmark
import io.fabric8.kubernetes.client.NamespacedKubernetesClient import io.fabric8.kubernetes.client.NamespacedKubernetesClient
import mu.KotlinLogging import mu.KotlinLogging
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}
class KafkaLagExporterRemover(private val client : NamespacedKubernetesClient) { class KafkaLagExporterRemover(private val client: NamespacedKubernetesClient) {
fun remove(label: String){ fun remove(label: String) {
this.client.pods().withLabel(label).delete() this.client.pods().withLabel(label).delete()
logger.info{"Pod with label: $label deleted"} logger.info { "Pod with label: $label deleted" }
} }
} }
...@@ -2,5 +2,4 @@ package theodolite.benchmark ...@@ -2,5 +2,4 @@ package theodolite.benchmark
import io.fabric8.kubernetes.client.CustomResourceList import io.fabric8.kubernetes.client.CustomResourceList
class KubernetesBenchmarkList : CustomResourceList<KubernetesBenchmark>() { class KubernetesBenchmarkList : CustomResourceList<KubernetesBenchmark>()
} \ No newline at end of file
\ No newline at end of file
...@@ -16,7 +16,7 @@ class AnalysisExecutor(private val slo: BenchmarkExecution.Slo) { ...@@ -16,7 +16,7 @@ class AnalysisExecutor(private val slo: BenchmarkExecution.Slo) {
offset = Duration.ofHours(slo.offset.toLong()) offset = Duration.ofHours(slo.offset.toLong())
) )
fun analyse(load: LoadDimension, res: Resource, executionDuration: Duration): Boolean { fun analyze(load: LoadDimension, res: Resource, executionDuration: Duration): Boolean {
var result = false var result = false
try { try {
......
...@@ -8,6 +8,7 @@ import theodolite.util.LoadDimension ...@@ -8,6 +8,7 @@ import theodolite.util.LoadDimension
import theodolite.util.Resource import theodolite.util.Resource
import theodolite.util.Results import theodolite.util.Results
import java.time.Duration import java.time.Duration
import java.util.concurrent.atomic.AtomicBoolean
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}
...@@ -27,7 +28,7 @@ abstract class BenchmarkExecutor( ...@@ -27,7 +28,7 @@ abstract class BenchmarkExecutor(
val slo: BenchmarkExecution.Slo val slo: BenchmarkExecution.Slo
) { ) {
var run = true var run: AtomicBoolean = AtomicBoolean(true)
/** /**
* Run a experiment for the given parametrization, evaluate the experiment and save the result. * Run a experiment for the given parametrization, evaluate the experiment and save the result.
...@@ -37,11 +38,7 @@ abstract class BenchmarkExecutor( ...@@ -37,11 +38,7 @@ abstract class BenchmarkExecutor(
* @return True, if the number of resources are suitable for the given load, false otherwise. * @return True, if the number of resources are suitable for the given load, false otherwise.
*/ */
abstract fun runExperiment(load: LoadDimension, res: Resource): Boolean abstract fun runExperiment(load: LoadDimension, res: Resource): Boolean
fun stop() {
run = false
}
/** /**
* Wait while the benchmark is running and log the number of minutes executed every 1 minute. * Wait while the benchmark is running and log the number of minutes executed every 1 minute.
* *
...@@ -51,16 +48,16 @@ abstract class BenchmarkExecutor( ...@@ -51,16 +48,16 @@ abstract class BenchmarkExecutor(
var secondsRunning = 0L var secondsRunning = 0L
while (run && secondsRunning < executionDuration.toSeconds()) { while (run.get() && secondsRunning < executionDuration.toSeconds()) {
secondsRunning++ secondsRunning++
Thread.sleep(Duration.ofSeconds(1).toMillis()) Thread.sleep(Duration.ofSeconds(1).toMillis())
if ((secondsRunning % 60) == 0L) { if ((secondsRunning % 60) == 0L) {
logger.info { "Executed: ${secondsRunning / 60} minutes" } logger.info { "Executed: ${secondsRunning / 60} minutes." }
} }
} }
logger.debug { "Executor shutdown gracefully" } logger.debug { "Executor shutdown gracefully." }
} }
} }
...@@ -24,9 +24,9 @@ class BenchmarkExecutorImpl( ...@@ -24,9 +24,9 @@ class BenchmarkExecutorImpl(
benchmarkDeployment.setup() benchmarkDeployment.setup()
this.waitAndLog() this.waitAndLog()
if (this.run) { if (this.run.get()) {
result = result =
AnalysisExecutor(slo = slo).analyse(load = load, res = res, executionDuration = executionDuration) AnalysisExecutor(slo = slo).analyze(load = load, res = res, executionDuration = executionDuration)
this.results.setResult(Pair(load, res), result) this.results.setResult(Pair(load, res), result)
} }
benchmarkDeployment.teardown() benchmarkDeployment.teardown()
......
...@@ -47,7 +47,7 @@ class TheodoliteController( ...@@ -47,7 +47,7 @@ class TheodoliteController(
if (::executor.isInitialized && executor.getExecution().name == newExecution.metadata.name) { if (::executor.isInitialized && executor.getExecution().name == newExecution.metadata.name) {
isUpdated = true isUpdated = true
executor.executor.run = false executor.executor.run.compareAndSet(true, false)
} }
} }
...@@ -56,7 +56,7 @@ class TheodoliteController( ...@@ -56,7 +56,7 @@ class TheodoliteController(
executionsQueue.removeIf { e -> e.name == execution.metadata.name } executionsQueue.removeIf { e -> e.name == execution.metadata.name }
if (::executor.isInitialized && executor.getExecution().name == execution.metadata.name) { if (::executor.isInitialized && executor.getExecution().name == execution.metadata.name) {
isUpdated = true isUpdated = true
executor.executor.run = false executor.executor.run.compareAndSet(true, false)
logger.info { "Current benchmark stopped" } logger.info { "Current benchmark stopped" }
} }
} }
...@@ -74,7 +74,7 @@ class TheodoliteController( ...@@ -74,7 +74,7 @@ class TheodoliteController(
newBenchmark.name = newBenchmark.metadata.name newBenchmark.name = newBenchmark.metadata.name
if (::executor.isInitialized && executor.getBenchmark().name == oldBenchmark.metadata.name) { if (::executor.isInitialized && executor.getBenchmark().name == oldBenchmark.metadata.name) {
isUpdated = true isUpdated = true
executor.executor.run = false executor.executor.run.compareAndSet(true, false)
} else { } else {
onAdd(newBenchmark) onAdd(newBenchmark)
} }
...@@ -85,7 +85,7 @@ class TheodoliteController( ...@@ -85,7 +85,7 @@ class TheodoliteController(
benchmarks.remove(benchmark.metadata.name) benchmarks.remove(benchmark.metadata.name)
if (::executor.isInitialized && executor.getBenchmark().name == benchmark.metadata.name) { if (::executor.isInitialized && executor.getBenchmark().name == benchmark.metadata.name) {
isUpdated = true isUpdated = true
executor.executor.run = false executor.executor.run.compareAndSet(true, false)
logger.info { "Current benchmark stopped" } logger.info { "Current benchmark stopped" }
} }
} }
...@@ -96,7 +96,15 @@ class TheodoliteController( ...@@ -96,7 +96,15 @@ class TheodoliteController(
while (true) { while (true) {
try { try {
reconcile() reconcile()
logger.info { "Theodolite is waiting for new jobs" } logger.info { "Theodolite is waiting for new matching benchmark and execution" }
logger.info { "Currently available executions: " }
executionsQueue.forEach {
logger.info { "${it.name} : waiting for : ${it.benchmark}" }
}
logger.info { "Currently available benchmarks: " }
benchmarks.forEach {
logger.info { it.key }
}
sleep(2000) sleep(2000)
} catch (e: InterruptedException) { } catch (e: InterruptedException) {
logger.error { "Execution interrupted with error: $e" } logger.error { "Execution interrupted with error: $e" }
......
...@@ -12,8 +12,8 @@ import theodolite.util.Results ...@@ -12,8 +12,8 @@ import theodolite.util.Results
import java.time.Duration import java.time.Duration
class TheodoliteExecutor( class TheodoliteExecutor(
private var config: BenchmarkExecution, private val config: BenchmarkExecution,
private var kubernetesBenchmark: KubernetesBenchmark private val kubernetesBenchmark: KubernetesBenchmark
) { ) {
lateinit var executor: BenchmarkExecutor lateinit var executor: BenchmarkExecutor
...@@ -75,7 +75,7 @@ class TheodoliteExecutor( ...@@ -75,7 +75,7 @@ class TheodoliteExecutor(
val config = buildConfig() val config = buildConfig()
// execute benchmarks for each load // execute benchmarks for each load
for (load in config.loads) { for (load in config.loads) {
if (executor.run) { if (executor.run.get()) {
config.compositeStrategy.findSuitableResource(load, config.resources) config.compositeStrategy.findSuitableResource(load, config.resources)
} }
} }
......
...@@ -3,10 +3,10 @@ package theodolite.patcher ...@@ -3,10 +3,10 @@ package theodolite.patcher
import io.fabric8.kubernetes.api.model.KubernetesResource import io.fabric8.kubernetes.api.model.KubernetesResource
import io.fabric8.kubernetes.api.model.apps.Deployment import io.fabric8.kubernetes.api.model.apps.Deployment
class SchedulerNamePatcher(private val k8sResource: KubernetesResource): Patcher { class SchedulerNamePatcher(private val k8sResource: KubernetesResource) : Patcher {
override fun <String> patch(value: String) { override fun <String> patch(value: String) {
if (k8sResource is Deployment) { if (k8sResource is Deployment) {
k8sResource.spec.template.spec.schedulerName = value as kotlin.String; k8sResource.spec.template.spec.schedulerName = value as kotlin.String
} }
} }
} }
\ No newline at end of file
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