Skip to content
Snippets Groups Projects
Commit b37a85a8 authored by Simon Ehrenstein's avatar Simon Ehrenstein
Browse files

Add @RegisterForReflection annotation for compatibility with native images

parent d4ead8a5
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!108Feature/185 Make Paths Configurable,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
Showing
with 34 additions and 3 deletions
...@@ -2,4 +2,5 @@ ...@@ -2,4 +2,5 @@
!build/*-runner !build/*-runner
!build/*-runner.jar !build/*-runner.jar
!build/lib/* !build/lib/*
!build/quarkus-app/* !build/quarkus-app/*
\ No newline at end of file !config/*
\ No newline at end of file
...@@ -20,6 +20,7 @@ RUN chown 1001 /work \ ...@@ -20,6 +20,7 @@ RUN chown 1001 /work \
&& chmod "g+rwX" /work \ && chmod "g+rwX" /work \
&& chown 1001:root /work && chown 1001:root /work
COPY --chown=1001:root build/*-runner /work/application COPY --chown=1001:root build/*-runner /work/application
COPY config/ /work/config/
EXPOSE 8080 EXPOSE 8080
USER 1001 USER 1001
......
package theodolite.benchmark package theodolite.benchmark
import io.quarkus.runtime.annotations.RegisterForReflection
import theodolite.util.ConfigurationOverride import theodolite.util.ConfigurationOverride
import theodolite.util.LoadDimension import theodolite.util.LoadDimension
import theodolite.util.Resource import theodolite.util.Resource
@RegisterForReflection
interface Benchmark { interface Benchmark {
fun buildDeployment( fun buildDeployment(
load: LoadDimension, load: LoadDimension,
......
package theodolite.benchmark package theodolite.benchmark
import io.quarkus.runtime.annotations.RegisterForReflection
import theodolite.util.ConfigurationOverride import theodolite.util.ConfigurationOverride
import kotlin.properties.Delegates import kotlin.properties.Delegates
@RegisterForReflection
class BenchmarkExecution { class BenchmarkExecution {
lateinit var name: String lateinit var name: String
lateinit var benchmark: String lateinit var benchmark: String
...@@ -12,6 +14,7 @@ class BenchmarkExecution { ...@@ -12,6 +14,7 @@ class BenchmarkExecution {
lateinit var execution: Execution lateinit var execution: Execution
lateinit var configOverrides: List<ConfigurationOverride> lateinit var configOverrides: List<ConfigurationOverride>
@RegisterForReflection
class Execution { class Execution {
lateinit var strategy: String lateinit var strategy: String
var duration by Delegates.notNull<Long>() var duration by Delegates.notNull<Long>()
...@@ -19,6 +22,7 @@ class BenchmarkExecution { ...@@ -19,6 +22,7 @@ class BenchmarkExecution {
lateinit var restrictions: List<String> lateinit var restrictions: List<String>
} }
@RegisterForReflection
class Slo { class Slo {
lateinit var sloType: String lateinit var sloType: String
var threshold by Delegates.notNull<Int>() var threshold by Delegates.notNull<Int>()
...@@ -28,11 +32,13 @@ class BenchmarkExecution { ...@@ -28,11 +32,13 @@ class BenchmarkExecution {
var warmup by Delegates.notNull<Int>() var warmup by Delegates.notNull<Int>()
} }
@RegisterForReflection
class LoadDefinition { class LoadDefinition {
lateinit var loadType: String lateinit var loadType: String
lateinit var loadValues: List<Int> lateinit var loadValues: List<Int>
} }
@RegisterForReflection
class ResourceDefinition { class ResourceDefinition {
lateinit var resourceType: String lateinit var resourceType: String
lateinit var resourceValues: List<Int> lateinit var resourceValues: List<Int>
......
...@@ -2,6 +2,7 @@ package theodolite.benchmark ...@@ -2,6 +2,7 @@ package theodolite.benchmark
import io.fabric8.kubernetes.api.model.KubernetesResource import io.fabric8.kubernetes.api.model.KubernetesResource
import io.fabric8.kubernetes.client.DefaultKubernetesClient import io.fabric8.kubernetes.client.DefaultKubernetesClient
import io.quarkus.runtime.annotations.RegisterForReflection
import mu.KotlinLogging import mu.KotlinLogging
import theodolite.k8s.K8sResourceLoader import theodolite.k8s.K8sResourceLoader
import theodolite.patcher.PatcherManager import theodolite.patcher.PatcherManager
...@@ -11,6 +12,7 @@ private val logger = KotlinLogging.logger {} ...@@ -11,6 +12,7 @@ private val logger = KotlinLogging.logger {}
private var DEFAULT_NAMESPACE = "default" private var DEFAULT_NAMESPACE = "default"
@RegisterForReflection
class KubernetesBenchmark : Benchmark { class KubernetesBenchmark : Benchmark {
lateinit var name: String lateinit var name: String
lateinit var appResource: List<String> lateinit var appResource: List<String>
......
...@@ -5,6 +5,7 @@ import mu.KotlinLogging ...@@ -5,6 +5,7 @@ import mu.KotlinLogging
import theodolite.benchmark.BenchmarkExecution import theodolite.benchmark.BenchmarkExecution
import theodolite.benchmark.KubernetesBenchmark import theodolite.benchmark.KubernetesBenchmark
import theodolite.util.YamlParser import theodolite.util.YamlParser
import java.nio.file.Paths
import kotlin.system.exitProcess import kotlin.system.exitProcess
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}
...@@ -14,13 +15,17 @@ object TheodoliteYamlExecutor { ...@@ -14,13 +15,17 @@ object TheodoliteYamlExecutor {
@JvmStatic @JvmStatic
fun main(args: Array<String>) { fun main(args: Array<String>) {
logger.info { "Theodolite started" } logger.info { "Theodolite started" }
val path = Paths.get("").toAbsolutePath().toString()
logger.info{ path }
// load the BenchmarkExecution and the BenchmarkType // load the BenchmarkExecution and the BenchmarkType
val parser = YamlParser() val parser = YamlParser()
val benchmarkExecution = val benchmarkExecution =
parser.parse("./../../../resources/main/yaml/BenchmarkExecution.yaml", BenchmarkExecution::class.java)!! parser.parse("./config/BenchmarkExecution.yaml", BenchmarkExecution::class.java)!!
val benchmark = 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) val executor = TheodoliteExecutor(benchmarkExecution, benchmark)
executor.run() executor.run()
......
package theodolite.patcher package theodolite.patcher
import io.quarkus.runtime.annotations.RegisterForReflection
@RegisterForReflection
interface Patcher { interface Patcher {
fun <T> patch(value: T) fun <T> patch(value: T)
} }
package theodolite.util package theodolite.util
import io.quarkus.runtime.annotations.RegisterForReflection
@RegisterForReflection
class ConfigurationOverride { class ConfigurationOverride {
lateinit var patcher: PatcherDefinition lateinit var patcher: PatcherDefinition
lateinit var value: String lateinit var value: String
......
package theodolite.util package theodolite.util
import io.quarkus.runtime.annotations.RegisterForReflection
import org.apache.kafka.clients.admin.NewTopic import org.apache.kafka.clients.admin.NewTopic
import kotlin.properties.Delegates import kotlin.properties.Delegates
@RegisterForReflection
class KafkaConfig { class KafkaConfig {
lateinit var bootstrapServer: String lateinit var bootstrapServer: String
lateinit var topics: List<TopicWrapper> lateinit var topics: List<TopicWrapper>
......
package theodolite.util package theodolite.util
import io.quarkus.runtime.annotations.RegisterForReflection
@RegisterForReflection
class PatcherDefinition { class PatcherDefinition {
lateinit var type: String lateinit var type: String
lateinit var resource: String lateinit var resource: String
......
package theodolite.util package theodolite.util
import io.quarkus.runtime.annotations.RegisterForReflection
@RegisterForReflection
class TypeName { class TypeName {
lateinit var typeName: String lateinit var typeName: String
lateinit var patchers: List<PatcherDefinition> lateinit var patchers: List<PatcherDefinition>
......
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