Kafka Stream API and Consumer API

I need to read a specific Kafka topic, do a VERY short message processing and transfer it to another Kafka cluster.

I am currently using a consumer who is also a producer on another kafka server.

However, the streaming API supposedly offers a lighter option with high bandwidth.

So the questions are:

  • Assuming my processing code doesn't require much power, is it better to use a streaming API?
  • Does APi streaming support recording to another Kafka cluster?
  • What is a streaming API compared to a user API?
+4
source share
1

, KafkaStreams Kafka.

+2

Source: https://habr.com/ru/post/1666880/


All Articles