https://github.com/doist/elasticache-redis-cost
Find AWS ElastiCache instance types that can fit existing Redis instances and see how much it will cost
https://github.com/doist/elasticache-redis-cost
aws elasticache redis
Last synced: 3 months ago
JSON representation
Find AWS ElastiCache instance types that can fit existing Redis instances and see how much it will cost
- Host: GitHub
- URL: https://github.com/doist/elasticache-redis-cost
- Owner: Doist
- License: mit
- Created: 2020-07-23T09:55:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-09-19T11:53:48.000Z (almost 3 years ago)
- Last Synced: 2025-01-14T10:07:22.174Z (over 1 year ago)
- Topics: aws, elasticache, redis
- Language: Go
- Homepage:
- Size: 49.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# elasticache-redis-cost
Command elasticache-redis-cost suggests AWS ElastiCache for Redis instance
types that can fit existing Redis instances.
Usage of elasticache-redis-cost:
-any-family
take into account all instance families, not only memory-optimized
-any-generation
take into account old generation instance types
-csv
print report in CVS instead of formatted text
-html path
path to HTML file to save report; if empty, text report is printed to stdout
-max-load int
source dataset must fit this percent maxmemory utilization of the target, [1,100] range (default 80)
-redises path
path to file with Redis addresses, one per line (/dev/stdin to read from stdin)
-region region
use prices for this AWS region (default "us-east-1")
-reserved-memory-percent int
value of reserved-memory-percent ElastiCache parameter, [0,100] range (default 25)
Please see AWS documentation regarding reserved-memory-percent if you decide to change it:
https://aws.amazon.com/premiumsupport/knowledge-center/available-memory-elasticache-redis-node/
https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ParameterGroups.Redis.html#ParameterGroups.Redis.3-2-4.New
> The percent of a node's memory reserved for nondata use. By default, the
> Redis data footprint grows until it consumes all of the node's memory. If
> this occurs, then node performance will likely suffer due to excessive
> memory paging. By reserving memory, you can set aside some of the available
> memory for non-Redis purposes to help reduce the amount of paging.
> This parameter is specific to ElastiCache, and is not part of the standard
> Redis distribution.
## AWS Environment
This tool uses AWS SDK, please make sure you have AWS credentials available:
.
Program only accesses [GetProducts] pricing API endpoint, either use
`AWSPriceListServiceFullAccess` AWS managed policy, or create an explicit
policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"pricing:GetProducts"
],
"Effect": "Allow",
"Resource": "*"
}
]
}
[GetProducts]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_GetProducts.html