Reputation: 135
Is there any concept for aggregation in Kafka like the concept of camel-aggregation .
If yes, Could anyone provide a detailed description of what it is and how to use it .
Upvotes: 1
Views: 2803
Reputation: 62285
I am not familiar with Apache Camel, but you can use Kafka Streams to aggregate messaged:
I refer to the docs for now: http://docs.confluent.io/current/streams/developer-guide.html#streams-developer-guide-dsl-aggregating
Also check out the examples: https://github.com/confluentinc/kafka-streams-examples/tree/5.3.1-post/
Upvotes: 2