guozhangwang commented on a change in pull request #11650: URL: https://github.com/apache/kafka/pull/11650#discussion_r779180990
########## File path: streams/src/test/java/org/apache/kafka/streams/integration/IQv2StoreIntegrationTest.java ########## @@ -626,6 +627,118 @@ public void process(final Record<Integer, Integer> record) { } + private void setUpWindowPAPITopology(final WindowBytesStoreSupplier supplier, + final StreamsBuilder builder) { + final StoreBuilder<?> windowStoreStoreBuilder; + final ProcessorSupplier<Integer, Integer, Void, Void> processorSupplier; + if (storeToTest.timestamped()) { + windowStoreStoreBuilder = Stores.timestampedWindowStoreBuilder( + supplier, + Serdes.Integer(), + Serdes.Integer() + ); + processorSupplier = () -> new ContextualProcessor<Integer, Integer, Void, Void>() { + @Override + public void process(final Record<Integer, Integer> record) { + final TimestampedWindowStore<Integer, Integer> stateStore = + context().getStateStore(windowStoreStoreBuilder.name()); + stateStore.put( + record.key(), + ValueAndTimestamp.make( + record.value(), record.timestamp() + ), + WINDOW_START + ); + } + }; + } else { + windowStoreStoreBuilder = Stores.windowStoreBuilder( + supplier, + Serdes.Integer(), + Serdes.Integer() + ); + processorSupplier = + () -> new ContextualProcessor<Integer, Integer, Void, Void>() { + @Override + public void process(final Record<Integer, Integer> record) { + final WindowStore<Integer, Integer> stateStore = + context().getStateStore(windowStoreStoreBuilder.name()); + stateStore.put(record.key(), record.value(), WINDOW_START); + } + }; + } + if (cache) { + windowStoreStoreBuilder.withCachingEnabled(); + } else { + windowStoreStoreBuilder.withCachingDisabled(); + } + if (log) { + windowStoreStoreBuilder.withLoggingEnabled(Collections.emptyMap()); + } else { + windowStoreStoreBuilder.withCachingDisabled(); + } + if (storeToTest.global()) { + builder.addGlobalStore( + windowStoreStoreBuilder, + INPUT_TOPIC_NAME, + Consumed.with(Serdes.Integer(), Serdes.Integer()), + processorSupplier + ); + } else { + builder.addStateStore(windowStoreStoreBuilder); + builder + .stream(INPUT_TOPIC_NAME, Consumed.with(Serdes.Integer(), Serdes.Integer())) + .process(processorSupplier, windowStoreStoreBuilder.name()); + } + + } + + private void setUpSessionPAPITopology(final SessionBytesStoreSupplier supplier, + final StreamsBuilder builder) { + final StoreBuilder<?> sessionStoreStoreBuilder; + final ProcessorSupplier<Integer, Integer, Void, Void> processorSupplier; + sessionStoreStoreBuilder = Stores.sessionStoreBuilder( + supplier, + Serdes.Integer(), + Serdes.Integer() + ); + processorSupplier = () -> new ContextualProcessor<Integer, Integer, Void, Void>() { + @Override + public void process(final Record<Integer, Integer> record) { + final SessionStore<Integer, Integer> stateStore = + context().getStateStore(sessionStoreStoreBuilder.name()); + stateStore.put( + new Windowed<>(record.key(), new SessionWindow(WINDOW_START, WINDOW_START)), + record.value() + ); + } + }; + if (cache) { + sessionStoreStoreBuilder.withCachingEnabled(); + } else { + sessionStoreStoreBuilder.withCachingDisabled(); + } + if (log) { + sessionStoreStoreBuilder.withLoggingEnabled(Collections.emptyMap()); + } else { + sessionStoreStoreBuilder.withCachingDisabled(); Review comment: Seems you got the same :) and ditto elsewhere. -- 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