估算成本
如何在不更改现有资源的情况下评估特定订阅或数据库的成本。
Redis 云 |
---|
更改订阅和数据库时,也会更改部署的成本。 通过试运行请求,您可以在部署这些更改之前评估影响并获得新的成本估算:
- 创建订阅
- 创建数据库
- 更新数据库
定义试运行请求
支持试运行请求的 API作接受dryRun
boolean 参数。
例如,创建订阅请求正文的 JSON 正文可以包含"dryRun": true
:
{
"name": "DryRun Cost evaluation subscription",
"dryRun": true,
"paymentMethodId": 8240,
"cloudProviders": [
{
"cloudAccountId": 16424,
"regions": [
{
"region": "us-east-1",
"networking": {
"deploymentCIDR": "10.0.0.0/24"
}
}
]
}
],
"databases": [
{
"name": "database-a",
"memoryLimitInGb": 0.1
}
]
}
Executing a dry-run request
Dry-run requests behave like regular requests except that no changes are made to existing resources.
A dry-run request produces a cost evaluation report for the subscription.
API Operation
"dryRun": false
(default)
"dryRun": true
Create subscription
Create a subscription
Returns a cost evaluation report of the planned subscription
Create database
Creates a new database in the subscription
Returns a cost evaluation report for the relevant subscription
Update database
Changes the specified database
Returns a cost evaluation report and evaluates whether the relevant subscription requires additional resources based on the database modification
Example of a dry-run request & response
This section demonstrates a complete example of a create subscription dry-run request and response.
Dry-run request body
Here is an example of the pricing request body:
{
"name": "DryRun Cost evaluation subscription",
"dryRun": true,
"paymentMethodId": 8240,
"cloudProviders": [
{
"cloudAccountId": 16424,
"regions": [
{
"region": "us-east-1",
"networking": {
"deploymentCIDR": "10.0.0.0/24"
}
}
]
}
],
"databases": [
{
"name": "database-a",
"throughputMeasurement": {
"by": "operations-per-second",
"value": 1000
},
"memoryLimitInGb": 0.1
, "quantity": 3
},
{
"name": "database-b",
"throughputMeasurement": {
"by": "operations-per-second",
"value": 1000
},
"replication": false
,"memoryLimitInGb": 0.1
},
{
"name": "database-c",
"throughputMeasurement": {
"by": "operations-per-second",
"value": 1000
},
"replication": true
,"memoryLimitInGb": 5
},
{
"name": "database-d",
"throughputMeasurement": {
"by": "operations-per-second",
"value": 10000
},
"replication": false
,"memoryLimitInGb": 12
},
{
"name": "database-e",
"throughputMeasurement": {
"by": "operations-per-second",
"value": 25000
},
"replication": true
,"memoryLimitInGb": 25
} ]
}
- The create subscription request contains the
"dryRun": true
parameter
- The databases array contains the definitions of multiple database templates, named
database-a
, database-b
, database-c
, etc.
- Note that the databases differ in structure (size, throughput measurement, replication, quantity, etc.)
Dry-run response
Here is an example of the pricing response section for the above create subscription dry-run request:
{
"response": {
"resource": {
"pricing": [
{
"databaseName": "database-a",
"type": "Shards",
"typeDetails": "micro",
"quantity": 6,
"quantityMeasurement": "shards",
"pricePerUnit": 0.027,
"priceCurrency": "USD",
"pricePeriod": "hour"
},
{
"databaseName": "database-b",
"type": "Shards",
"typeDetails": "micro",
"quantity": 1,
"quantityMeasurement": "shards",
"pricePerUnit": 0.027,
"priceCurrency": "USD",
"pricePeriod": "hour"
},
{
"databaseName": "database-c",
"type": "Shards",
"typeDetails": "high-throughput",
"quantity": 2,
"quantityMeasurement": "shards",
"pricePerUnit": 0.124,
"priceCurrency": "USD",
"pricePeriod": "hour"
},
{
"databaseName": "database-d",
"type": "Shards",
"typeDetails": "small",
"quantity": 1,
"quantityMeasurement": "shards",
"pricePerUnit": 0.156,
"priceCurrency": "USD",
"pricePeriod": "hour"
},
{
"databaseName": "database-e",
"type": "Shards",
"typeDetails": "large",
"quantity": 2,
"quantityMeasurement": "shards",
"pricePerUnit": 0.293,
"priceCurrency": "USD",
"pricePeriod": "hour"
},
{
"type": "EBS Volume",
"quantity": 345,
"quantityMeasurement": "GB"
},
{
"type": "r5.xlarge",
"quantity": 3,
"quantityMeasurement": "instances"
}
]
}
}
}
Note:
Some of the response content was omitted for brevity.
- The
pricing
array contains an element for each database, containing the database name and cost evaluation related to that database
- The database cost is measured in type and number of shards required for the specific database, as defined by the database template in the request. See Cloud Pricing
- The cost evaluation for each database is measured in quantity of the specific shard type required by the requested database. The cost per shard is defined by the fields
pricePerUnit
(where unit
is a shard of the specific type), priceCurrency
, and pricePeriod
- For example, to calculate the total hourly cost of a database, use the following formula:
pricePerUnit
* quantity
- The structure of the pricing response depends on the cloud account used by the request. There are two types of cloud accounts: a cloud account owned, named, and managed by the customer (AWS only) and one maintained by "Redis resources" cloud account (All cloud providers)
- For a customer-provided cloud account - The cost evaluation response lists the AWS resources required (storage and compute instances) without pricing data (which depends on the specific details of the customer's AWS account)
- For a Redis internal cloud account (defined a
cloudAccountId = 1
in the create subscription request) - The cost evaluation response includes a MinimumPrice
element. This indicates the minimal hourly cost of the entire subscription. This minimum price will be charged if the sum of all shards for all the subscription's databases is less than the specified minimum price
Viewing actual subscription cost
The Get subscriptions
and Get subscription by id
JSON response contains an element named subscriptionPricing
that details the latest calculated cost of a subscription, grouped by shard type for all the databases in the subscription.
On this page