Re: Kafka routing

2024-08-29 Thread Divij Vaidya
Hello Kafka brokers are designed to be dumb i.e. they simply act as a pipe to transmit messages from producer to consumer. They don’t have capabilities to selectively filter or perform any analytics/transformation of the messages in flights. In fact, a brokers doesn’t ever read the key/value pair

Kafka routing

2024-08-29 Thread vaidya nathan
Hi Kafka users, I have a producer consumer setup where I want the consumer to get only a subset of messages based on some conditions. Trying to figure out whether there are any configuration on the Kafka side that we can do to achieve this . Most of the solutions I see is to filter them at th