DynamoDB RCU/WCU explained (with sizing examples)
DynamoDB pricing is often described as “RCU/WCU”, but the part that trips teams up is that units are not “one request equals one unit”. The effective units depend on item size, access pattern, and whether you scan or query targeted keys.
RCU/WCU quick sizing
- Item size: larger items consume more units.
- Read/write rate: baseline requests per second.
- Consistency: strong reads consume more RCUs.
Step 1: define what you need to size
- Reads: requests/second and average item size returned (plus worst-case ranges).
- Writes: writes/second and average item size written.
- Extras: GSIs and transactional operations can change effective units.
Step 2: the “item size multiplier” intuition
If you double the item size, you often increase the consumed capacity per operation. This is why data shape changes can change the bill without any traffic change.
- Small items: per-request units are closer to the minimum.
- Large items: per-request units increase; scans become especially expensive.
- Indexes: writing one item can mean writing multiple index entries.
Step 3: sizing examples (planning)
Treat these as workflow examples, not exact pricing rules. Always validate with official pricing and measured consumption for your table.
- Example A (reads): 200 read requests/second, small items, mostly key queries -> reads dominate by request volume.
- Example B (writes): 50 write requests/second, large items, multiple indexes -> writes dominate due to amplification.
- Example C (scan trap): “find recent failures” implemented as a scan -> reads dominate because you read many items to return a few.
How to estimate in practice
- Measure request volume (baseline + busy month).
- Measure item sizes (average and p95) for read and write paths.
- List GSIs and determine which write paths update them.
- Identify scans and replace with key-based queries where possible.
Common pitfalls
- Assuming one request equals one unit (item size changes it).
- Forgetting that GSIs add write amplification and storage copies.
- Ignoring retries/timeouts that multiply requests during incidents.
- Using scans for user-facing traffic or dashboards.
Validation checklist
- Validate item size distribution (average and p95) from real items.
- Validate what percent of reads are scans vs queries.
- Validate GSI count and projections; quantify amplification.
- After changes, compare a real week of usage and adjust your model.
Sources
- DynamoDB pricing: aws.amazon.com/dynamodb/pricing
- DynamoDB developer guide: docs.aws.amazon.com
Related guides
EKS node sizing: requests, overhead, and why packing is never perfect
A practical EKS node sizing guide: size from requests, reserve headroom, account for DaemonSets and max-pods limits, and understand why real scheduling often needs more nodes than the math minimum.
API Gateway access logs cost: how to estimate ingestion and retention
A practical guide to estimate API Gateway access logs cost: estimate average bytes per request, convert to GB/day, model retention (GB-month), and reduce log spend safely.
API Gateway cost optimization: reduce requests, bytes, and log spend
A practical playbook to reduce API Gateway spend: identify the dominant driver (requests, transfer, or logs), then apply high-leverage fixes with a validation checklist.
API Gateway pricing: what to model (requests + transfer)
A practical API Gateway pricing checklist: request charges, data transfer, and the add-ons that can show up on the bill.
API Gateway vs ALB vs CloudFront cost: what to compare (requests, transfer, add-ons)
A practical cost comparison of API Gateway, Application Load Balancer (ALB), and CloudFront. Compare request pricing, data transfer, caching impact, WAF, logs, and the hidden line items that change the answer.
AWS CloudWatch Metrics Pricing & Cost Guide
CloudWatch metrics cost model: custom metrics, API requests, dashboards, and retention.
Related calculators
RPS to Monthly Requests Calculator
Estimate monthly request volume from RPS, hours/day, and utilization.
API Request Cost Calculator
Estimate request-based charges from monthly requests and $ per million.
CDN Request Cost Calculator
Estimate CDN request fees from monthly requests and $ per 10k/1M pricing.
FAQ
Why does item size matter so much for DynamoDB cost?
Because read and write units are tied to how much data an operation processes. Larger items consume more units per request.
Are scans always expensive?
Scans can be expensive because they read many items to return a small subset. If you scan large ranges routinely, reads often dominate the bill.
Last updated: 2026-02-07