KTable unable fetch data from Materialized view
问题 I am using Kafka Streams with Spring Boot. In my use case when I receive customer event I need to store it in customer-store materialized view and when I receive order event, I need to join customer and order then store the result in customer-order materialized view. StoreBuilder customerStateStore = Stores.keyValueStoreBuilder(Stores.persistentKeyValueStore("customer-store"),Serdes.String(), customerSerde) .withLoggingEnabled(new HashMap<>()); streamsBuilder.stream("customer", Consumed.with