Kafka produce to send image

前端 未结 2 425
野的像风
野的像风 2020-12-11 11:13

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

2条回答
  •  清歌不尽
    2020-12-11 11:50

    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");
    

提交回复
热议问题