mjsax commented on code in PR #20070: URL: https://github.com/apache/kafka/pull/20070#discussion_r2178408847
########## streams/src/test/java/org/apache/kafka/streams/tests/SmokeTestDriver.java: ########## @@ -522,7 +522,11 @@ private static VerificationResult verifyAll(final Map<String, Set<Integer>> inpu } boolean pass; try (final PrintStream resultStream = new PrintStream(byteArrayOutputStream)) { - pass = verifyTAgg(resultStream, inputs, events.get("tagg"), validationPredicate, printResults); + pass = true; + if (eosEnabled) { + // TAGG is computing "Count-by-count", which may produce keys that are not in the input data in ALOS, so we skip validation in this case. + pass = verifyTAgg(resultStream, inputs, events.get("tagg"), printResults); Review Comment: Ah. Got it. Thanks. -- 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