I have the following Kafka producer code. I want to know if I can send image file instead of JSON file? Is there any code reference sending an image file through Kafka produ
Image can be sent as byte array in message value. so your code will be changed as given.
props.put("value.serializer", "org.apache.kafka.common.serialization.ByteArraySerializer");