I am new to Kafka connect. I have a usecase like below :
There is a single shared topic in which I get messages of different entities, say Employee, department (actual table names are different)
Schemas of employee and department are registered in schema registry
Using the Kafka sink connector, is it possible to separate data coming for each entity based on schema and write to respective tables Example, employee data coming to topic should go to employee table and department data to department table
If not, is there any other better way to do this?