bbejeck commented on code in PR #18953: URL: https://github.com/apache/kafka/pull/18953#discussion_r2010567526
########## streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/KafkaStreamsTelemetryIntegrationTest.java: ########## @@ -419,8 +485,36 @@ private Topology complexTopology() { return builder.build(); } - private Topology simpleTopology() { + private void addGlobalStore(final StreamsBuilder builder) { + builder.addGlobalStore(Stores.keyValueStoreBuilder( + Stores.inMemoryKeyValueStore("iq-test-store"), + Serdes.String(), + Serdes.String() + ), + globalStoreTopic, + Consumed.with(Serdes.String(), Serdes.String()), + () -> new Processor<>() { + private KeyValueStore<String, String> store; + + @Override + public void init(final ProcessorContext<Void, Void> context) { + store = context.getStateStore("iq-test-store"); + } + + @Override + public void process(final Record<String, String> record) { + store.put(record.key(), record.value()); + globalStoreIterator = store.all(); Review Comment: Regarding `@SuppressWarning` I wasn't seeing one ,so I didn't add it. If you'd prefer to have on anyway I'll do so. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org