分布式消息服务KAFKA版-查询分区指定偏移量的消息:响应消息

时间:2024-01-24 16:40:33

响应消息

响应参数

参数说明见表2

表2 响应参数说明

参数

类型

说明

message

object of message

消息列表,见表表3

表3 message参数

参数

类型

说明

key

String

消息的key。

value

String

消息内容。

topic

String

Topic名称。

partition

Integer

分区编号。

message_offset

Long

消息位置。

size

Integer

消息大小,单位字节。

timestamp

Long

消息时间戳。

响应示例

{
    "message": 
        {
            "topic": "mytest",
            "partition": 0,
            "message_offset": 7,
            "key": null,
            "value": "kasjdf",
            "size": 6,
            "timestamp": 1568125036045
        }
}
support.huaweicloud.com/api-kafka/kafka-api-191209002.html