We have an incoming kafka topic with multiple Avro schema based messages serialized into it.
We need to split the messages in Avro format into multiple other kafka topics based on certain value of a common schema attribute.
|------> [OUTGOING TOPIC(AVRO) - A]
[INCOMING TOPIC(AVRO)] ----->|------> [OUTGOING TOPIC(AVRO) - B]
|------> [OUTGOING TOPIC(AVRO) - C]
Would like to understand how to achieve it while avoid building an intermediate client to do this splitting/routing in confluent platform.
I explored the kafka connector but did not find an existing connector which does this work.