diff --git a/theodolite-quarkus/.dockerignore b/theodolite-quarkus/.dockerignore index 4361d2fb38ddc889a2c68222aa5b600fbcfbf6f9..d95caadc42523460fa9d78cf17629c8ee231acc9 100644 --- a/theodolite-quarkus/.dockerignore +++ b/theodolite-quarkus/.dockerignore @@ -2,4 +2,5 @@ !build/*-runner !build/*-runner.jar !build/lib/* -!build/quarkus-app/* \ No newline at end of file +!build/quarkus-app/* +!config/* \ No newline at end of file diff --git a/theodolite-quarkus/src/main/resources/yaml/BenchmarkExecution.yaml b/theodolite-quarkus/config/BenchmarkExecution.yaml similarity index 100% rename from theodolite-quarkus/src/main/resources/yaml/BenchmarkExecution.yaml rename to theodolite-quarkus/config/BenchmarkExecution.yaml diff --git a/theodolite-quarkus/src/main/resources/yaml/BenchmarkType.yaml b/theodolite-quarkus/config/BenchmarkType.yaml similarity index 100% rename from theodolite-quarkus/src/main/resources/yaml/BenchmarkType.yaml rename to theodolite-quarkus/config/BenchmarkType.yaml diff --git a/theodolite-quarkus/src/main/resources/yaml/aggregation-service.yaml b/theodolite-quarkus/config/aggregation-service.yaml similarity index 100% rename from theodolite-quarkus/src/main/resources/yaml/aggregation-service.yaml rename to theodolite-quarkus/config/aggregation-service.yaml diff --git a/theodolite-quarkus/src/main/resources/yaml/jmx-configmap.yaml b/theodolite-quarkus/config/jmx-configmap.yaml similarity index 100% rename from theodolite-quarkus/src/main/resources/yaml/jmx-configmap.yaml rename to theodolite-quarkus/config/jmx-configmap.yaml diff --git a/theodolite-quarkus/src/main/resources/yaml/service-monitor.yaml b/theodolite-quarkus/config/service-monitor.yaml similarity index 100% rename from theodolite-quarkus/src/main/resources/yaml/service-monitor.yaml rename to theodolite-quarkus/config/service-monitor.yaml diff --git a/theodolite-quarkus/src/main/resources/yaml/uc1-kstreams-deployment.yaml b/theodolite-quarkus/config/uc1-kstreams-deployment.yaml similarity index 100% rename from theodolite-quarkus/src/main/resources/yaml/uc1-kstreams-deployment.yaml rename to theodolite-quarkus/config/uc1-kstreams-deployment.yaml diff --git a/theodolite-quarkus/src/main/resources/yaml/uc1-load-generator-deployment.yaml b/theodolite-quarkus/config/uc1-load-generator-deployment.yaml similarity index 100% rename from theodolite-quarkus/src/main/resources/yaml/uc1-load-generator-deployment.yaml rename to theodolite-quarkus/config/uc1-load-generator-deployment.yaml diff --git a/theodolite-quarkus/src/main/resources/yaml/uc1-load-generator-service.yaml b/theodolite-quarkus/config/uc1-load-generator-service.yaml similarity index 100% rename from theodolite-quarkus/src/main/resources/yaml/uc1-load-generator-service.yaml rename to theodolite-quarkus/config/uc1-load-generator-service.yaml diff --git a/theodolite-quarkus/src/main/docker/Dockerfile.native b/theodolite-quarkus/src/main/docker/Dockerfile.native index 4a6d4147c2c098a0c5f181cc96c9916eede64c97..37a5a4bd8472a358194dbb14a5fce61df94804d3 100644 --- a/theodolite-quarkus/src/main/docker/Dockerfile.native +++ b/theodolite-quarkus/src/main/docker/Dockerfile.native @@ -20,6 +20,7 @@ RUN chown 1001 /work \ && chmod "g+rwX" /work \ && chown 1001:root /work COPY --chown=1001:root build/*-runner /work/application +COPY config/ /work/config/ EXPOSE 8080 USER 1001 diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/Benchmark.kt b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/Benchmark.kt index 8c15fa1dc60d2d72a5b30508ea4570b8449f817b..8a52987c497e08eb7337934ee50c7b2753ca1fa2 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/Benchmark.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/Benchmark.kt @@ -1,9 +1,11 @@ package theodolite.benchmark +import io.quarkus.runtime.annotations.RegisterForReflection import theodolite.util.ConfigurationOverride import theodolite.util.LoadDimension import theodolite.util.Resource +@RegisterForReflection interface Benchmark { fun buildDeployment( load: LoadDimension, diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/BenchmarkExecution.kt b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/BenchmarkExecution.kt index 25535e1a64db9641cd47747cf8676b3994964690..14bb9e49a13a70fa38cfbc3669d54cc35c8a0a2b 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/BenchmarkExecution.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/BenchmarkExecution.kt @@ -1,8 +1,10 @@ package theodolite.benchmark +import io.quarkus.runtime.annotations.RegisterForReflection import theodolite.util.ConfigurationOverride import kotlin.properties.Delegates +@RegisterForReflection class BenchmarkExecution { lateinit var name: String lateinit var benchmark: String @@ -12,6 +14,7 @@ class BenchmarkExecution { lateinit var execution: Execution lateinit var configOverrides: List<ConfigurationOverride> + @RegisterForReflection class Execution { lateinit var strategy: String var duration by Delegates.notNull<Long>() @@ -19,6 +22,7 @@ class BenchmarkExecution { lateinit var restrictions: List<String> } + @RegisterForReflection class Slo { lateinit var sloType: String var threshold by Delegates.notNull<Int>() @@ -28,11 +32,13 @@ class BenchmarkExecution { var warmup by Delegates.notNull<Int>() } + @RegisterForReflection class LoadDefinition { lateinit var loadType: String lateinit var loadValues: List<Int> } + @RegisterForReflection class ResourceDefinition { lateinit var resourceType: String lateinit var resourceValues: List<Int> diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt index 1e2d9a2e675bee3817c493e5afc89333ca508ed8..62b7ba8eb801ab9d20a1d9e8f8eab1fc87ed0e63 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt @@ -2,6 +2,7 @@ package theodolite.benchmark import io.fabric8.kubernetes.api.model.KubernetesResource import io.fabric8.kubernetes.client.DefaultKubernetesClient +import io.quarkus.runtime.annotations.RegisterForReflection import mu.KotlinLogging import theodolite.k8s.K8sResourceLoader import theodolite.patcher.PatcherManager @@ -11,6 +12,7 @@ private val logger = KotlinLogging.logger {} private var DEFAULT_NAMESPACE = "default" +@RegisterForReflection class KubernetesBenchmark : Benchmark { lateinit var name: String lateinit var appResource: List<String> diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/TheodoliteYamlExecutor.kt b/theodolite-quarkus/src/main/kotlin/theodolite/execution/TheodoliteYamlExecutor.kt index f6c109dac52ea4a4faeb30b8041329bc86812552..d6505431c4db92347b1ab8fb90c2b795107d6a9d 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/execution/TheodoliteYamlExecutor.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/execution/TheodoliteYamlExecutor.kt @@ -5,6 +5,7 @@ import mu.KotlinLogging import theodolite.benchmark.BenchmarkExecution import theodolite.benchmark.KubernetesBenchmark import theodolite.util.YamlParser +import java.nio.file.Paths import kotlin.system.exitProcess private val logger = KotlinLogging.logger {} @@ -14,13 +15,17 @@ object TheodoliteYamlExecutor { @JvmStatic fun main(args: Array<String>) { logger.info { "Theodolite started" } + val path = Paths.get("").toAbsolutePath().toString() + logger.info{ path } // load the BenchmarkExecution and the BenchmarkType val parser = YamlParser() val benchmarkExecution = - parser.parse("./../../../resources/main/yaml/BenchmarkExecution.yaml", BenchmarkExecution::class.java)!! + parser.parse("./config/BenchmarkExecution.yaml", BenchmarkExecution::class.java)!! val benchmark = - parser.parse("./../../../resources/main/yaml/BenchmarkType.yaml", KubernetesBenchmark::class.java)!! + parser.parse("./config/BenchmarkType.yaml", KubernetesBenchmark::class.java)!! + + logger.info { benchmark.name.toString() } val executor = TheodoliteExecutor(benchmarkExecution, benchmark) executor.run() diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/Patcher.kt b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/Patcher.kt index 82c562572de4acd932997d71e53138ecf2865462..55cde39f5a6d7bb4cacd1e539593fc0538d108af 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/Patcher.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/Patcher.kt @@ -1,5 +1,8 @@ package theodolite.patcher +import io.quarkus.runtime.annotations.RegisterForReflection + +@RegisterForReflection interface Patcher { fun <T> patch(value: T) } diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/ConfigurationOverride.kt b/theodolite-quarkus/src/main/kotlin/theodolite/util/ConfigurationOverride.kt index fcf8244e87b87d0e6470c021474ca0ed5bb2eeec..bf517595ac7a28d2dada3f4f1d5f75b6db1dae0e 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/util/ConfigurationOverride.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/util/ConfigurationOverride.kt @@ -1,5 +1,8 @@ package theodolite.util +import io.quarkus.runtime.annotations.RegisterForReflection + +@RegisterForReflection class ConfigurationOverride { lateinit var patcher: PatcherDefinition lateinit var value: String diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/KafkaConfig.kt b/theodolite-quarkus/src/main/kotlin/theodolite/util/KafkaConfig.kt index 8c529e3d8e793d96819afe78008c663e76504911..d21e8c77f87ed82e65b3fad6876cd361c0358d38 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/util/KafkaConfig.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/util/KafkaConfig.kt @@ -1,8 +1,10 @@ package theodolite.util +import io.quarkus.runtime.annotations.RegisterForReflection import org.apache.kafka.clients.admin.NewTopic import kotlin.properties.Delegates +@RegisterForReflection class KafkaConfig { lateinit var bootstrapServer: String lateinit var topics: List<TopicWrapper> diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/PatcherDefinition.kt b/theodolite-quarkus/src/main/kotlin/theodolite/util/PatcherDefinition.kt index 13b1e721cdf1f54a43414127ffcc8b227e7693ee..9ebe82a66382d238f314e1c6853265eca6690abd 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/util/PatcherDefinition.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/util/PatcherDefinition.kt @@ -1,5 +1,8 @@ package theodolite.util +import io.quarkus.runtime.annotations.RegisterForReflection + +@RegisterForReflection class PatcherDefinition { lateinit var type: String lateinit var resource: String diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/TypeName.kt b/theodolite-quarkus/src/main/kotlin/theodolite/util/TypeName.kt index 3568a355edbddd3b29e6d934deecb923518af3df..2a83eef700edd1f1017dcb5d9fdbffbc20d6dafd 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/util/TypeName.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/util/TypeName.kt @@ -1,5 +1,8 @@ package theodolite.util +import io.quarkus.runtime.annotations.RegisterForReflection + +@RegisterForReflection class TypeName { lateinit var typeName: String lateinit var patchers: List<PatcherDefinition>