Estimate NoSQL Database Cloud costs with provisioned and on-demand capacity modes.
Last verified: May 2026
Output will appear here...OCI NoSQL Database Cloud Service provides a fully managed, multi-model (key-value, document, columnar) database with single-digit millisecond latency and automatic scaling. Pricing is based on provisioned read and write capacity units, storage consumed, and optional on-demand capacity mode. This estimator calculates monthly costs based on your throughput requirements, storage volume, and capacity mode selection, helping you choose between provisioned and on-demand pricing models.
Your team's session store handles 50K reads/sec and 10K writes/sec with 500 GB of data. The estimator compares: provisioned at exactly 50K read + 10K write capacity = ~$1,800/month; on-demand at the same workload = ~$5,400/month. Provisioned wins by 67% for this steady-state workload. The team also reviews item sizes — average item is 1.2 KB, suggesting they're paying 2 RU per read. Compressing the session JSON brings average item to 0.7 KB = 1 RU per read, halving the required provisioned capacity. Combined savings: provisioned + size optimization = $900/month vs the $5,400/month naive on-demand approach.
Provisioned capacity is dramatically cheaper than on-demand at steady state. The crossover is roughly when your throughput is consistently above 60% of provisioned for >12 hours/day. For unpredictable traffic, on-demand eliminates over-provisioning waste; for predictable workloads, provisioned wins on cost.
Strongly consistent reads cost 2x eventual reads. Most workloads tolerate eventual consistency (a session lookup returning slightly stale data is fine). Default to eventual consistency and only use strong consistency for genuinely consistency-critical operations (financial transactions, leaderboard updates).
Item size matters dramatically. A 1 KB read = 1 RU. A 5 KB read = 5 RU. Compress JSON values, use shorter field names, normalize related data into separate tables — these item-size optimizations directly reduce RU consumption AND make queries faster.
The estimator computes OCI NoSQL monthly cost as: provisioned capacity (read units/sec × hourly rate + write units/sec × hourly rate × hours), OR on-demand capacity (per-request rates × monthly request count), plus storage GB × per-GB-month rate. Output presents both pricing models side-by-side at your stated throughput levels, plus the breakeven analysis showing when each becomes cheaper.
Was this tool helpful?
Disclaimer: This tool runs entirely in your browser. No data is sent to our servers. Always verify outputs before using them in production. AWS, Azure, and GCP are trademarks of their respective owners.