调用 DescribeConsumedPartitions 接口查看消费组订阅的分区信息。
2018-01-01
。参数 | 参数类型 | 是否必选 | 示例值 | 说明 |
---|---|---|---|---|
InstanceId | String | 必选 | kafka-****x | 实例 ID。 |
GroupId | String | 必选 | my_group | 消费组 ID。 |
TopicName | String | 必选 | my_topic | Topic 名称。 |
PageNumber | Integer | 必选 | 1 | 查询消费组的页码。不小于 1。 |
PageSize | Integer | 必选 | 10 | 单页查询的个数,取值不小于 1。 |
FiledName | String | 可选 | PartitionNumber | 排序使用的字段。
|
SortOrder | String | 可选 | Asc | 排序方式,可设置为:
|
参数 | 参数类型 | 说明 |
---|---|---|
Total | Integer | 消费组消费对应 Topic 的分区总数。 |
Partitions | List | 符合查询条件的 Partition 列表。详细说明请参考 ConsumedPartition。 |
POST https://kafka.volcengineapi.com/?Action=DescribeConsumedPartitions&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": 10, "InstanceId": "kafka-****x", "GroupId": "my_group", "TopicName": "my_topic", "FiledName": "PartitionNumber", "SortOrder": "Asc" }
{ "ResponseMetadata": { "RequestId": "****************", "Action": "DescribeConsumedPartitions", "Version": "2018-01-01", "Service": "kafka", "Region": "cn-beijing" }, "Result": { "Total": 0, "Partitions": [ { "PartitionNumber": 0, "ConsumedClient": "", "ConsumedOffset": 0, "StartOffset": 0, "EndOffset": 0, "Accumulation": 0 } ] } }