Querying the Partition List of a Topic
Function
This API is used to query the partition list of a topic.
Calling Method
For details, see Calling APIs.
URI
GET /v2/{project_id}/kafka/instances/{instance_id}/topics/{topic}/partitions
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
project_id |
Yes |
String |
Project ID. For details about how to obtain it, see Obtaining a Project ID. |
|
instance_id |
Yes |
String |
Instance ID. |
|
topic |
Yes |
String |
Topic. |
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
offset |
No |
Integer |
Offset. The records after this offset will be queried. |
|
limit |
No |
Integer |
Maximum number of records that can be returned. |
Request Parameters
None
Response Parameters
Status code: 200
|
Parameter |
Type |
Description |
|---|---|---|
|
total |
Integer |
Total records. |
|
partitions |
Array of partitions objects |
Partition array. |
Example Requests
Querying the partition list of a topic
GET https://{endpoint}/v2/{project_id}/kafka/instances/{instance_id}/topics/{topic}/partitions?start=1&limit=10
Example Responses
Status code: 200
The partition list of the topic is queried successfully.
{
"total" : 3,
"partitions" : [ {
"partition" : 0,
"start_offset" : 0,
"last_offset" : 1216303,
"message_count" : 1216303,
"last_update_time" : 1688011291458
}, {
"partition" : 1,
"start_offset" : 0,
"last_offset" : 985447,
"message_count" : 985447,
"last_update_time" : 1688011291469
}, {
"partition" : 2,
"start_offset" : 0,
"last_offset" : 923340,
"message_count" : 923340,
"last_update_time" : 1688011291526
} ]
}
Status Codes
|
Status Code |
Description |
|---|---|
|
200 |
The partition list of the topic is queried successfully. |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.