Skip to content
Snippets Groups Projects
Commit 7fa761e9 authored by Benedikt Wetzel's avatar Benedikt Wetzel
Browse files

Add different connection string for internal and external access to kafka and zookeeper

parent d81d525f
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus,!78Resolve "Implement Quarkus/Kotlin protype"
...@@ -20,9 +20,11 @@ class TheodoliteExecutor() { ...@@ -20,9 +20,11 @@ class TheodoliteExecutor() {
private fun loadConfig(): Config { private fun loadConfig(): Config {
logger.info { resourcesPath } logger.info { resourcesPath }
val benchmark: UC1Benchmark = UC1Benchmark( val benchmark: UC1Benchmark = UC1Benchmark(
UC1Benchmark.UC1BenchmarkConfig( // use port forward 2181 -> 2181 UC1Benchmark.UC1BenchmarkConfig(
zookeeperConnectionString = "localhost:2181", //"my-confluent-cp-zookeeper:2181", //localhost:2181. clusterZookeeperConnectionString = "my-confluent-cp-zookeeper:2181",
kafkaIPConnectionString = "localhost:9092",//"my-confluent-cp-kafka:","178.18.0." clusterKafkaConnectionString = "localhost:9092",
externalZookeeperConnectionString = "localhost:2181",
externalKafkaConnectionString = "localhost:9092",
schemaRegistryConnectionString = "http://my-confluent-cp-schema-registry:8081", schemaRegistryConnectionString = "http://my-confluent-cp-schema-registry:8081",
kafkaPartition = 40, kafkaPartition = 40,
kafkaReplication = 1, kafkaReplication = 1,
......
...@@ -29,8 +29,8 @@ class UC1Benchmark(config: UC1BenchmarkConfig) : Benchmark(config) { ...@@ -29,8 +29,8 @@ class UC1Benchmark(config: UC1BenchmarkConfig) : Benchmark(config) {
init { init {
this.workloadGeneratorStateCleaner = this.workloadGeneratorStateCleaner =
WorkloadGeneratorStateCleaner(this.config.zookeeperConnectionString, path = "/workload-generation") WorkloadGeneratorStateCleaner(this.config.externalZookeeperConnectionString, path = "/workload-generation")
this.topicManager = TopicManager(this.config.kafkaIPConnectionString) this.topicManager = TopicManager(this.config.externalKafkaConnectionString)
this.kubernetesClient = DefaultKubernetesClient().inNamespace("default") this.kubernetesClient = DefaultKubernetesClient().inNamespace("default")
this.yamlLoader = YamlLoader(this.kubernetesClient) this.yamlLoader = YamlLoader(this.kubernetesClient)
this.deploymentManager = DeploymentManager(this.kubernetesClient) this.deploymentManager = DeploymentManager(this.kubernetesClient)
...@@ -63,8 +63,8 @@ class UC1Benchmark(config: UC1BenchmarkConfig) : Benchmark(config) { ...@@ -63,8 +63,8 @@ class UC1Benchmark(config: UC1BenchmarkConfig) : Benchmark(config) {
// set environment variables // set environment variables
val environmentVariables: MutableMap<String, String> = mutableMapOf() val environmentVariables: MutableMap<String, String> = mutableMapOf()
//environmentVariables.put("KAFKA_BOOTSTRAP_SERVERS", this.config.kafkaIPConnectionString) environmentVariables.put("KAFKA_BOOTSTRAP_SERVERS", this.config.clusterKafkaConnectionString)
//environmentVariables.put("SCHEMA_REGISTRY_URL", this.config.schemaRegistryConnectionString) environmentVariables.put("SCHEMA_REGISTRY_URL", this.config.schemaRegistryConnectionString)
// setup deployment // setup deployment
...@@ -85,9 +85,9 @@ class UC1Benchmark(config: UC1BenchmarkConfig) : Benchmark(config) { ...@@ -85,9 +85,9 @@ class UC1Benchmark(config: UC1BenchmarkConfig) : Benchmark(config) {
// TODO ("calculate number of required instances") // TODO ("calculate number of required instances")
val requiredInstances = 1 val requiredInstances = 1
val environmentVariables: MutableMap<String, String> = mutableMapOf() val environmentVariables: MutableMap<String, String> = mutableMapOf()
//environmentVariables.put("KAFKA_BOOTSTRAP_SERVERS", this.config.kafkaIPConnectionString) environmentVariables.put("KAFKA_BOOTSTRAP_SERVERS", this.config.clusterKafkaConnectionString)
//environmentVariables.put("ZK_HOST", this.config.zookeeperConnectionString.split(":")[0]) environmentVariables.put("ZK_HOST", this.config.clusterZookeeperConnectionString.split(":")[0])
//environmentVariables.put("ZK_PORT", this.config.zookeeperConnectionString.split(":")[1]) environmentVariables.put("ZK_PORT", this.config.clusterZookeeperConnectionString.split(":")[1])
environmentVariables["NUM_SENSORS"] = load.get().toString() environmentVariables["NUM_SENSORS"] = load.get().toString()
environmentVariables["INSTANCES"] = requiredInstances.toString() environmentVariables["INSTANCES"] = requiredInstances.toString()
...@@ -96,8 +96,10 @@ class UC1Benchmark(config: UC1BenchmarkConfig) : Benchmark(config) { ...@@ -96,8 +96,10 @@ class UC1Benchmark(config: UC1BenchmarkConfig) : Benchmark(config) {
} }
data class UC1BenchmarkConfig( data class UC1BenchmarkConfig(
val zookeeperConnectionString: String, val clusterZookeeperConnectionString: String,
val kafkaIPConnectionString: String, val clusterKafkaConnectionString: String,
val externalZookeeperConnectionString: String,
val externalKafkaConnectionString: String,
val schemaRegistryConnectionString: String, val schemaRegistryConnectionString: String,
val kafkaTopics: List<String>, val kafkaTopics: List<String>,
val kafkaReplication: Short, val kafkaReplication: Short,
......
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