Spring team,
I currently use reactive-kafka
which works great. But If I have to use kafka-streams
, is there any reactive
version for it or Is there any reactive version for spring-cloud-stream-binder-kafka-streams
?
There is not; with Kafka Streams, Spring is not involved with the data flow at runtime; it is only involved in setting up the streams using normal Spring techniques; once the stream is started, it is all kafka-streams
.
A similar situation would apply to reactor-kafka; so it has no support for Kafka Streams at all.