Configuring an Autoscaling Policy for Storage Space
Function
This API is used to configure an autoscaling policy for storage space.
Constraints
- For yearly/monthly instances, the system bills new storage space automatically by default. Autoscaling is available only when your account balance is sufficient.
- Replica set and cluster instances with read replicas do not support this function.
URI
- URI format
- URI example
https://dds.cn-north-1.myhuaweicloud.com/v3/619d3e78f61b4be68bc5aa0b59edcf7b/instances/auto-enlarge-volume-policies
Table 1 Path parameters Name
Mandatory
Type
Description
project_id
Yes
String
Project ID of a tenant in a region. To obtain the project ID, see Obtaining a Project ID.
Request Parameters
Name |
Mandatory |
Type |
Description |
---|---|---|---|
X-Auth-Token |
Yes |
String |
User token obtained from IAM. For details, see Authentication. |
Name |
Type |
Mandatory |
Description |
---|---|---|---|
switch_option |
String |
No |
Whether to enable autoscaling.
|
policies |
Array of objects |
Yes |
Autoscaling policies for storage space. You can set autoscaling policies for up to 10 instances. For details, see Table 4. |
Name |
Type |
Mandatory |
Description |
---|---|---|---|
instance_id |
String |
Yes |
DB instance ID. |
threshold |
Integer |
No |
Threshold to trigger autoscaling. If the used storage exceeds this threshold, autoscaling is triggered. The value can be 80, 85, or 90. The default threshold is 90, indicating that autoscaling is enabled when the used storage space exceeds 90% of total storage space. This parameter of a cluster instance applies to each shard in the instance. |
step |
Integer |
No |
Autoscaling increment (s%). The value can be 10, 15, or 20, and the default value is 10. After autoscaling is triggered, your storage will automatically scale up by s% (in increments of 10 GB) of your allocated storage. If your account balance is insufficient, autoscaling will fail. |
Response Parameters
Status code: 400
Name |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error message |
Status code: 500
Name |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error message |
Status code: default
Name |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error message |
Example Request
Configure an autoscaling policy for the instance whose ID is 93e4b3eda14349b1b870f72829bc3b9bin02. Set the threshold for triggering autoscaling to 90% and the autoscaling increment to 10%.
PUT https://{endpoint}/v3/619d3e78f61b4be68bc5aa0b59edcf7b/instances/auto-enlarge-volume-policies
{ "policies" : [ { "instance_id" : "93e4b3eda14349b1b870f72829bc3b9bin02", "threshold" : 90, "step" : 10 } ] }
Disable autoscaling for the instance whose ID is 93e4b3eda14349b1b870f72829bc3b9bin02.
PUT https://{endpoint}/v3/619d3e78f61b4be68bc5aa0b59edcf7b/instances/auto-enlarge-volume-policies
{ "policies" : [ { "instance_id" : "93e4b3eda14349b1b870f72829bc3b9bin02" } ], "switch_option" : "off" }
Example Response
Status code: 200
OK.
{ }
Status Code
Status Code |
Description |
---|---|
200 |
OK. |
400 |
Client error. |
500 |
Server error. |
default |
Client or server error. |
Error Code
For details, see Error Code.
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