query: 1.0.6 - Refined `QueryAppilcationConfiguration`
authorKai Moritz <kai@juplo.de>
Sun, 9 Jun 2024 08:15:10 +0000 (10:15 +0200)
committerKai Moritz <kai@juplo.de>
Sun, 9 Jun 2024 19:23:51 +0000 (21:23 +0200)
--
moved the creation of the streams-config into the config-class

src/main/java/de/juplo/kafka/wordcount/query/QueryApplicationConfiguration.java
src/main/java/de/juplo/kafka/wordcount/query/QueryStreamProcessor.java

index 3f866f0..ae93d45 100644 (file)
@@ -1,6 +1,9 @@
 package de.juplo.kafka.wordcount.query;
 
 import com.fasterxml.jackson.databind.ObjectMapper;
 package de.juplo.kafka.wordcount.query;
 
 import com.fasterxml.jackson.databind.ObjectMapper;
+import org.apache.kafka.clients.consumer.ConsumerConfig;
+import org.apache.kafka.common.serialization.Serdes;
+import org.apache.kafka.streams.StreamsConfig;
 import org.apache.kafka.streams.state.HostInfo;
 import org.springframework.boot.autoconfigure.web.ServerProperties;
 import org.springframework.boot.context.properties.EnableConfigurationProperties;
 import org.apache.kafka.streams.state.HostInfo;
 import org.springframework.boot.autoconfigure.web.ServerProperties;
 import org.springframework.boot.context.properties.EnableConfigurationProperties;
@@ -11,6 +14,7 @@ import org.springframework.context.annotation.Configuration;
 import java.io.IOException;
 import java.net.InetSocketAddress;
 import java.net.Socket;
 import java.io.IOException;
 import java.net.InetSocketAddress;
 import java.net.Socket;
+import java.util.Properties;
 
 
 @Configuration
 
 
 @Configuration
@@ -41,16 +45,36 @@ public class QueryApplicationConfiguration
        }
 
        @Bean
        }
 
        @Bean
-       public QueryStreamProcessor streamProcessor(
+       public Properties streamProcessorProperties(
                        QueryApplicationProperties applicationProperties,
                        QueryApplicationProperties applicationProperties,
+                       HostInfo applicationServer)
+       {
+               Properties props = new Properties();
+
+               String applicationId = applicationProperties.getApplicationId();
+               String bootstrapServer = applicationProperties.getBootstrapServer();
+
+               props.put(StreamsConfig.APPLICATION_ID_CONFIG, applicationId);
+               props.put(StreamsConfig.APPLICATION_SERVER_CONFIG, applicationServer.host() + ":" + applicationServer.port());
+               props.put(StreamsConfig.BOOTSTRAP_SERVERS_CONFIG, bootstrapServer);
+               props.put(StreamsConfig.DEFAULT_KEY_SERDE_CLASS_CONFIG, Serdes.String().getClass().getName());
+               props.put(StreamsConfig.DEFAULT_VALUE_SERDE_CLASS_CONFIG, Serdes.String().getClass().getName());
+               props.put(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest");
+
+               return props;
+       }
+
+       @Bean
+       public QueryStreamProcessor streamProcessor(
+                       Properties streamProcessorProperties,
                        HostInfo applicationServer,
                        HostInfo applicationServer,
+                       QueryApplicationProperties applicationProperties,
                        ObjectMapper mapper,
                        ConfigurableApplicationContext context)
        {
                return new QueryStreamProcessor(
                        ObjectMapper mapper,
                        ConfigurableApplicationContext context)
        {
                return new QueryStreamProcessor(
-                               applicationProperties.getApplicationId(),
+                               streamProcessorProperties,
                                applicationServer,
                                applicationServer,
-                               applicationProperties.getBootstrapServer(),
                                applicationProperties.getUsersInputTopic(),
                                applicationProperties.getRankingInputTopic(),
                                mapper,
                                applicationProperties.getUsersInputTopic(),
                                applicationProperties.getRankingInputTopic(),
                                mapper,
index fed75b3..886c8cf 100644 (file)
@@ -5,9 +5,11 @@ import com.fasterxml.jackson.databind.ObjectMapper;
 import jakarta.annotation.PostConstruct;
 import jakarta.annotation.PreDestroy;
 import lombok.extern.slf4j.Slf4j;
 import jakarta.annotation.PostConstruct;
 import jakarta.annotation.PreDestroy;
 import lombok.extern.slf4j.Slf4j;
-import org.apache.kafka.clients.consumer.ConsumerConfig;
 import org.apache.kafka.common.serialization.Serdes;
 import org.apache.kafka.common.serialization.Serdes;
-import org.apache.kafka.streams.*;
+import org.apache.kafka.streams.KafkaStreams;
+import org.apache.kafka.streams.KeyQueryMetadata;
+import org.apache.kafka.streams.StoreQueryParameters;
+import org.apache.kafka.streams.StreamsBuilder;
 import org.apache.kafka.streams.kstream.KStream;
 import org.apache.kafka.streams.kstream.KTable;
 import org.apache.kafka.streams.kstream.Materialized;
 import org.apache.kafka.streams.kstream.KStream;
 import org.apache.kafka.streams.kstream.KTable;
 import org.apache.kafka.streams.kstream.Materialized;
@@ -36,9 +38,8 @@ public class QueryStreamProcessor
 
 
        public QueryStreamProcessor(
 
 
        public QueryStreamProcessor(
-                       String applicationId,
+                       Properties props,
                        HostInfo applicationServer,
                        HostInfo applicationServer,
-                       String bootstrapServer,
                        String usersInputTopic,
                        String rankingInputTopic,
                        ObjectMapper mapper,
                        String usersInputTopic,
                        String rankingInputTopic,
                        ObjectMapper mapper,
@@ -70,14 +71,6 @@ public class QueryStreamProcessor
                                })
                                .toTable(Materialized.as(storeName));
 
                                })
                                .toTable(Materialized.as(storeName));
 
-               Properties props = new Properties();
-               props.put(StreamsConfig.APPLICATION_ID_CONFIG, applicationId);
-               props.put(StreamsConfig.APPLICATION_SERVER_CONFIG, applicationServer.host() + ":" + applicationServer.port());
-               props.put(StreamsConfig.BOOTSTRAP_SERVERS_CONFIG, bootstrapServer);
-               props.put(StreamsConfig.DEFAULT_KEY_SERDE_CLASS_CONFIG, Serdes.String().getClass().getName());
-               props.put(StreamsConfig.DEFAULT_VALUE_SERDE_CLASS_CONFIG, Serdes.String().getClass().getName());
-               props.put(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest");
-
                streams = new KafkaStreams(builder.build(), props);
                streams.setUncaughtExceptionHandler((Throwable e) ->
                {
                streams = new KafkaStreams(builder.build(), props);
                streams.setUncaughtExceptionHandler((Throwable e) ->
                {