Closed gborobio73 closed 4 years ago
Hello! The issue was due not having latest kafka streams dependency. I updated to 2.4.1 and works perfectly.
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-streams</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-streams-test-utils</artifactId>
<version>2.4.1</version>
<scope>test</scope>
</dependency>
Thank you!
Hello! Thank you for the examples, they are very useful. I have a problem when running
KafkaStreamsWordCountApplicationTests
from kafka-streams-word-count. First I get this error due using Java 14:Then I switch to newer Kafka as explained here but the test still fails. First I see this error in the logs:
Then it gets stuck at
for about one minute and starts the shutting down process.
Test fails with:
I really appreciate your help!
Thanks a lot!