Minimum instances
5
Estimate minimum and recommended instance count from throughput and safety margin.
Minimum instances
5
Recommended instances
6
The tool calculates a minimum instance count from throughput demand and per-instance capacity, then applies margin for safer provisioning.
minimum = ceil(expected_rps / per_instance_rps)
recommended = ceil(minimum * (1 + margin_pct/100))Rounding up is required because partial instances cannot be provisioned.
If demand is 900 RPS and each instance handles 200 RPS, minimum is 5 and recommended grows with margin.
Capacity planning must use whole instance units.
Yes, the same throughput math applies to pod-based deployments.
Yes. This is a planning estimate, not a replacement for empirical tests.