Skip to content
Snippets Groups Projects
Commit 4c857ea9 authored by Benedikt Wetzel's avatar Benedikt Wetzel Committed by Sören Henning
Browse files

enhance logging

parent 1f0e91c1
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!135Add delay before start the load generator,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
...@@ -45,7 +45,7 @@ class KubernetesBenchmarkDeployment( ...@@ -45,7 +45,7 @@ class KubernetesBenchmarkDeployment(
.map { NewTopic(it.name, it.numPartitions, it.replicationFactor) } .map { NewTopic(it.name, it.numPartitions, it.replicationFactor) }
kafkaController.createTopics(kafkaTopics) kafkaController.createTopics(kafkaTopics)
appResources.forEach { kubernetesManager.deploy(it) } appResources.forEach { kubernetesManager.deploy(it) }
logger.info { "Wait ${this.loadGenerationDelay} seconds before starting the workload generator." } logger.info { "Wait ${this.loadGenerationDelay} seconds before starting the load generator." }
Thread.sleep(Duration.ofSeconds(this.loadGenerationDelay).toMillis()) Thread.sleep(Duration.ofSeconds(this.loadGenerationDelay).toMillis())
loadGenResources.forEach { kubernetesManager.deploy(it) } loadGenResources.forEach { kubernetesManager.deploy(it) }
} }
......
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