I would like to know if I need a custom serializer for producing JSON messages into the kafka queue. I don't necessarily work with objects while producing, but the messages that I get will be in the JSON format which I need to push into the kafka queue. The consumers will be responsible for parsing the JSON to the object they need.
Now, I would like to know whether I need a custom serializer to produce a JSON formatted message into the queue because after all JSON message is going to be a simple string.