Querying the Current Producer List of a Topic
Function
This API is used to query the current producer list of a topic.
URI
GET /v2/{project_id}/kafka/instances/{instance_id}/topics/{topic}/producers
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID. Minimum: 1 Maximum: 64 |
instance_id |
Yes |
String |
Instance ID. Minimum: 1 Maximum: 64 |
topic |
Yes |
String |
Topic. Minimum: 1 Maximum: 200 |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
offset |
No |
Integer |
Offset. The records after this offset will be queried. Minimum: 0 Maximum: 10000 |
limit |
No |
Integer |
Maximum number of records that can be returned. Minimum: 1 Maximum: 50 |
Request Parameters
None
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
total |
Integer |
Total records. Minimum: 0 Maximum: 10000 |
producers |
Array of producers objects |
Producer list. |
Example Requests
Querying the current producer list of a topic
GET https://{endpoint}/v2/{project_id}/kafka/instances/{instance_id}/topics/{topic}/producers?start=1&limit=10
Example Responses
Status code: 200
The current producer list of the topic is queried successfully.
{ "total" : 3, "producers" : [ { "producer_address" : "192.0.0.149:40443", "broker_address" : "192.0.0.146:9092", "join_time" : 1687204743328 }, { "producer_address" : "192.0.0.149:13807", "broker_address" : "192.0.0.80:9092", "join_time" : 1687204745939 }, { "producer_address" : "192.0.0.149:31876", "broker_address" : "192.0.0.71:9092", "join_time" : 1687204744934 } ] }
Status Codes
Status Code |
Description |
---|---|
200 |
The current producer 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.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot