- What's New
- Function Overview
- Product Bulletin
- Service Overview
- Getting Started
-
User Guide
- Process of Using RocketMQ
- Creating an IAM User and Granting DMS for RocketMQ Permissions
- Buying a RocketMQ Instance
- Configuring a Topic
- Accessing an Instance
- Managing Messages
- Managing Consumer Groups
- Managing Instances
- Modifying RocketMQ Specifications
- Migrating Metadata
- Viewing Monitoring Metrics and Configuring Alarms
- Viewing RocketMQ Audit Logs
- Best Practices
- Developer Guide
-
API Reference
- Before You Start
- API Overview
- Calling APIs
- Getting Started
-
APIs V2 (Recommended)
- Lifecycle Management
-
Consumer Group Management
- Querying the Consumer Group List
- Creating a Consumer Group or Batch Deleting Consumer Groups
- Batch Modifying Consumer Groups
- Deleting a Consumer Group
- Querying a Consumer Group
- Modifying a Consumer Group
- Querying the Consumer Group List or Details
- Resetting the Consumer Offset
- Querying the Consumer List
- Topic Management
- Message Management
- User Management
- Metadata Migration
- Tag Management
- Other APIs
- Managing Parameters
- Specification Modification Management
- Permissions and Supported Actions
- Appendix
- Change History
- SDK Reference
- FAQs
- Videos
Modifying a Topic
Function
This API is used to modify a topic.
URI
PUT /v2/{project_id}/instances/{instance_id}/topics/{topic}
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID. For details, see Obtaining a Project ID. |
instance_id |
Yes |
String |
Instance ID. |
topic |
Yes |
String |
Topic name. |
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
read_queue_num |
No |
Number |
Total number of read queues. |
write_queue_num |
No |
Number |
Total number of write queues. |
permission |
No |
String |
Permissions. |
Response Parameters
Status code: 204
Parameter |
Type |
Description |
---|---|---|
- |
AnyType |
The operation is successful. |
Example Requests
Changing a specified topic's total read queues to 3 and total write queues to 3
PUT https://{endpoint}/v2/{project_id}/instances/{instance_id}/topics/{topic} { "read_queue_num" : 3, "write_queue_num" : 3, "permission" : "all" }
Example Responses
None
Status Codes
Status Code |
Description |
---|---|
204 |
The operation is successful. |
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.