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} \
&& 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.
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/*-runner.jar /deployments/app.jar
COPY config/ /deployments/config/
......
......@@ -2,5 +2,4 @@ package theodolite.benchmark
import io.fabric8.kubernetes.client.CustomResourceList
class BenchmarkExecutionList : CustomResourceList<BenchmarkExecution>() {
}
\ No newline at end of file
class BenchmarkExecutionList : CustomResourceList<BenchmarkExecution>()
\ No newline at end of file
package theodolite.benchmark;
package theodolite.benchmark
import io.fabric8.kubernetes.client.NamespacedKubernetesClient
import mu.KotlinLogging
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()
logger.info{"Pod with label: $label deleted"}
logger.info { "Pod with label: $label deleted" }
}
}
......@@ -2,5 +2,4 @@ package theodolite.benchmark
import io.fabric8.kubernetes.client.CustomResourceList
class KubernetesBenchmarkList : CustomResourceList<KubernetesBenchmark>() {
}
\ No newline at end of file
class KubernetesBenchmarkList : CustomResourceList<KubernetesBenchmark>()
\ No newline at end of file
......@@ -16,7 +16,7 @@ class AnalysisExecutor(private val slo: BenchmarkExecution.Slo) {
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
try {
......
......@@ -8,6 +8,7 @@ import theodolite.util.LoadDimension
import theodolite.util.Resource
import theodolite.util.Results
import java.time.Duration
import java.util.concurrent.atomic.AtomicBoolean
private val logger = KotlinLogging.logger {}
......@@ -27,7 +28,7 @@ abstract class BenchmarkExecutor(
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.
......@@ -37,11 +38,7 @@ abstract class BenchmarkExecutor(
* @return True, if the number of resources are suitable for the given load, false otherwise.
*/
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.
*
......@@ -51,16 +48,16 @@ abstract class BenchmarkExecutor(
var secondsRunning = 0L
while (run && secondsRunning < executionDuration.toSeconds()) {
while (run.get() && secondsRunning < executionDuration.toSeconds()) {
secondsRunning++
Thread.sleep(Duration.ofSeconds(1).toMillis())
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(
benchmarkDeployment.setup()
this.waitAndLog()
if (this.run) {
if (this.run.get()) {
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)
}
benchmarkDeployment.teardown()
......
......@@ -47,7 +47,7 @@ class TheodoliteController(
if (::executor.isInitialized && executor.getExecution().name == newExecution.metadata.name) {
isUpdated = true
executor.executor.run = false
executor.executor.run.compareAndSet(true, false)
}
}
......@@ -56,7 +56,7 @@ class TheodoliteController(
executionsQueue.removeIf { e -> e.name == execution.metadata.name }
if (::executor.isInitialized && executor.getExecution().name == execution.metadata.name) {
isUpdated = true
executor.executor.run = false
executor.executor.run.compareAndSet(true, false)
logger.info { "Current benchmark stopped" }
}
}
......@@ -74,7 +74,7 @@ class TheodoliteController(
newBenchmark.name = newBenchmark.metadata.name
if (::executor.isInitialized && executor.getBenchmark().name == oldBenchmark.metadata.name) {
isUpdated = true
executor.executor.run = false
executor.executor.run.compareAndSet(true, false)
} else {
onAdd(newBenchmark)
}
......@@ -85,7 +85,7 @@ class TheodoliteController(
benchmarks.remove(benchmark.metadata.name)
if (::executor.isInitialized && executor.getBenchmark().name == benchmark.metadata.name) {
isUpdated = true
executor.executor.run = false
executor.executor.run.compareAndSet(true, false)
logger.info { "Current benchmark stopped" }
}
}
......@@ -96,7 +96,15 @@ class TheodoliteController(
while (true) {
try {
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)
} catch (e: InterruptedException) {
logger.error { "Execution interrupted with error: $e" }
......
......@@ -12,8 +12,8 @@ import theodolite.util.Results
import java.time.Duration
class TheodoliteExecutor(
private var config: BenchmarkExecution,
private var kubernetesBenchmark: KubernetesBenchmark
private val config: BenchmarkExecution,
private val kubernetesBenchmark: KubernetesBenchmark
) {
lateinit var executor: BenchmarkExecutor
......@@ -75,7 +75,7 @@ class TheodoliteExecutor(
val config = buildConfig()
// execute benchmarks for each load
for (load in config.loads) {
if (executor.run) {
if (executor.run.get()) {
config.compositeStrategy.findSuitableResource(load, config.resources)
}
}
......
......@@ -3,10 +3,10 @@ package theodolite.patcher
import io.fabric8.kubernetes.api.model.KubernetesResource
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) {
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