Akka Stream Kafka vs Kafka Streams

前端 未结 3 889
闹比i
闹比i 2021-01-30 16:42

I am currently working with Akka Stream Kafka to interact with kafka and I was wonderings what were the differences with Kafka Streams.

I know that the Akka based approa

3条回答
  •  自闭症患者
    2021-01-30 17:04

    The big advantage of Akka Stream over Kafka Streams would be the possibility to implement very complex processing graphs that can be cyclic with fan in/out and feedback loop. Kafka streams only allows acyclic graph if I am not wrong. It would be very complicated to implement cyclic processing graph on top of Kafka streams

提交回复
热议问题