I am new to Streaming Broker [like Kafka], and coming from Queueing Messaging System [like JMS, Rabbit MQ].
I read from Kafka docs that, messages are stored in Kafka partitions in offset as record. And consumer reads from offset.
What is the difference between message and record [does multiple/partial messages constitute a record?]
When comsumer reads from offset, is there a possibility that consumer reads partial message? IS there a need for consumer to string these parital messages based on some logic?
OR
1 message = 1 record = 1 offset
EDIT1:
The question was popped because, the "batch size" decides how many bytes of message should be published on to the borker. Lets say there are 2 messages with message1 = 100bytes and message2= 200 bytes and batchsize is set to 150bytes. Does this mean 100 bytes from message1 and 50 bytes from message2 are sent to broker at once? If yes, how are these 2 messages stored in offset?