You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the jackdaw.test namespace requires you to import TopologyTestDriver for test-machine to work, which in turn requires you to bring in the org.apache.kafka/kafka-streams-test-utils library as a dependency.
This currently only works using a kafka-streams-test-utils version within 2.0.0 - 2.3.0. When adding versions higher than 2.3.0, it throws errors. For example, for version 2.4.0:
Syntax error (ClassNotFoundException) compiling new at (jackdaw/test.clj:250:5).
org.apache.kafka.streams.internals.QuietStreamsConfig
Errors are thrown for version numbers from 2.4.0, 2.5.0 ... up to the latest: 2.8.0 - they all occur in jackdaw/test.clj.
-> Jackdaw needs to be made compatible / brought up to date with the newest versions from Apache Kafka's libraries.
The text was updated successfully, but these errors were encountered:
I think the only thing I needed to do to get it working on later versions of kafka (other than updating dependencies) was to ensure new-topic cast ints to shorts which is required by upstream API now.
Currently, the
jackdaw.test
namespace requires you to importTopologyTestDriver
fortest-machine
to work, which in turn requires you to bring in theorg.apache.kafka/kafka-streams-test-utils
library as a dependency.This currently only works using a
kafka-streams-test-utils
version within2.0.0
-2.3.0
. When adding versions higher than2.3.0
, it throws errors. For example, for version2.4.0
:Errors are thrown for version numbers from
2.4.0, 2.5.0
... up to the latest:2.8.0
- they all occur injackdaw/test.clj
.-> Jackdaw needs to be made compatible / brought up to date with the newest versions from Apache Kafka's libraries.
The text was updated successfully, but these errors were encountered: