根据时间查询查询实例 Topic 中的消息
此接口用于查询分区中指定时间范围内的消息元数据。
下表仅列出该接口特有的请求参数和部分公共参数。更多信息请见公共参数。
参数 | 类型 | 是否必填 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | QueryMessageByTimestamp | 要执行的操作,取值:QueryMessageByTimestamp。 |
Version | String | 是 | 2022-05-01 | API的版本,取值:2022-05-01。 |
TopicName | String | 是 | query_topic | Topic 名称。 |
PartitionId | Integer | 是 | 0 | 分区编号。设置为 |
Refresh | Boolean | 否 | false | 是否强制刷新,默认为false。
说明 当时间范围内有新消息写入时,可能需要刷新缓存才能正常查询到。 |
PageNumber | Integer | 是 | 1 | 列表的页码,最小值为 1。 |
PageSize | Integer | 是 | 10 | 列表中每一页的条目数量,取值范围为 1~100。 |
SortOrder | String | 否 | Asc | 查询结果的排序方式,默认为Asc。
|
QueryStartTimestamp | Long | 是 | 1661320625000 | 需要查询的起始时间。Unix 时间戳格式,单位为毫秒。 |
QueryEndTimestamp | Long | 是 | 1661320682000 | 需要查询的结束时间。Unix 时间戳格式,单位为毫秒。 |
InstanceId | String | 是 | kafka-cnngbnntswg1**** | 实例 ID。 |
下表仅列出本接口特有的返回参数。更多信息请参见返回结构。
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
MessageList | Array of Object | -- | 符合查询条件的消息列表。 |
HasMoreMessage | Boolean | true | 是否还有更多页的消息。
|
POST /?Action=QueryMessageByTimestamp&Version=2022-05-01 HTTP/1.1 Content-Type: application/json Host: kafka.volcengineapi.com X-Date: 20210328T100802Z Authorization: HMAC-SHA256 Credential=AK********/20210328/cn-beijing/kafka/request, SignedHeaders=x-date, Signature=******** { "InstanceId": "kafka-cnaxxxxx", "TopicName": "test-topic", "PartitionId": 0, "QueryStartTimestamp": 1717415062840, "QueryEndTimestamp": 1717415962840, "PageNumber": 1, "PageSize": 16, "Refresh": false }
{ "ResponseMetadata": { "RequestId": "2024060511024265745BEBEC5C4***", "Action": "QueryMessageByTimestamp", "Version": "2022-05-01", "Service": "kafka", "Region": "cn-beijing" }, "Result": { "HasMoreMessage": false, "MessageList": [ { "CreateTime": 1717556541777, "Key": "doc-key", "Message": "test-message1", "MessageOffset": 0, "MessageSize": 13, "PartitionId": 0, "TopicName": "test-topic" }, { "CreateTime": 1717556557043, "Key": "doc-key", "Message": "test-message2", "MessageOffset": 1, "MessageSize": 13, "PartitionId": 0, "TopicName": "test-topic" } ] } }
下表为您列举了该接口与业务逻辑相关的错误码。公共错误码请参见公共错误码文档。
状态码 | 错误码 | 说明 |
---|---|---|
400 | MissingParameter | 缺少%s参数。 |
400 | InvalidParameter.Unsupported | 不支持%s参数。 |
400 | Forbidden.Authentication | 账户未实名认证。 |
400 | InvalidParameter.Malformed | %s参数不符合规范。 |
400 | OperationDenied.InstanceClosed | 当前实例已关停,无法执行该操作。 |
404 | InvalidInstance.NotFound | 该实例不存在。 |
404 | InvalidTopicName.NotFound | Topic 不存在。 |
404 | InvalidInstanceId.NotFound | 实例不存在。 |
500 | InternalError | 内部错误,请稍后重试。 |