调用 DescribeTopicPartitions 接口获取 Topic 的 Partition 信息。
DescribeTopicPartitions 接口提供分页式的查询功能,供您查看指定 Topic 的分区数量、分区 ISR 状态等信息。
2018-01-01
。参数 | 参数类型 | 是否必选 | 示例值 | 说明 |
---|---|---|---|---|
PageNumber | Integer | 必选 | 1 | 列表的页码。 |
PageSize | Integer | 必选 | 1 | 列表中每一页的条目数量。 |
InstanceId | String | 必选 | kafka-**** | 实例 ID。 |
TopicName | String | 必选 | my_topic | Topic 名称。 |
PartitionNumbers | List | 可选 | [1,2] | 分区编号,若不指定,则对所有的分区进行查询。 |
UnderInsyncOnly | Bool | 可选 | true | 是否只查询存在不同步副本的分区列表,默认值为 false。
|
参数 | 参数类型 | 说明 |
---|---|---|
Total | Integer | 符合查询条件的分区总数。 |
Partitions | List | 符合查询条件的分区列表。详细信息请参考【StandardPartitionInfo】。 |
POST https://kafka.volcengineapi.com/?Action=DescribeTopicPartitions&Version=2018-01-01 HTTP/1.1 Accept: application/json 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=******** { "PageNumber": 1, "PageSize": 1, "InstanceId": "kafka-****", "TopicName": "my_topic", "PartitionNumbers": [ 0 ], "UnderInsyncOnly": true }
{ "ResponseMetadata": { "RequestId": "****************", "Action": "DescribeTopicPartitions", "Version": "2018-01-01", "Service": "kafka", "Region": "cn-beijing" }, "Result": { "Partitions": [ { "EndOffset": 0, "InsyncReplicas": [ 0, 1, 2 ], "Leader": 0, "MessageCount": 0, "PartitionNumber": 0, "Replicas": [ 0, 1, 2 ], "StartOffset": 0, "UnderInsyncReplicas": [] } ], "Total": 12 } }