In order to consider AWS Keyspaces as an alternative to an on-prem Cassandra cluster, I'd like to do a cost estimation. However, the keyspaces pricing is based on write request units (WRUs) and read capacity units (RCUs).
https://aws.amazon.com/keyspaces/pricing/
Each RRU provides enough capacity to read up to 4 KB of data with LOCAL_QUORUM consistency. Each WRU provides enough capacity to write up to 1 KB of data per row with LOCAL_QUORUM consistency
What metrics in Cassandra can be used for calculating the RCUs and WCUs for an existing cluster?
Currently we are storing iostats information (in every sec). Based on that information we were able to come up with an approx RC and WC. (+- 10% error margin, 95% confidence level)
We are going to cross check our numbers with the AWS folks soon.
Example:
We use the following calculation: 10,000 writes, of up to 1Kb, per second, in the AWS-EAST region, cost will be
Write cost: On-demand capacity mode =$1.45 * 0.01 * 60 * 60 * 24 * 365 = $457,272 per year
Provisioned capacity mode =$0.00075 * 0.01 * 60 * 60 * 24 * 365 = $236.52 per year
Updated: AWS folks are calculating based on a table partition size, which is wrong IMO.