Load Distribution Calculator

Distribute total RPS across nodes based on weighted load balancing.

Load distribution

Result

Node A RPS

480

Node B RPS

420

Node C RPS

300

How it works

This tool applies weighted balancing ratios to a total throughput target, estimating how many requests per second each node should absorb.

Formula

node_rps = total_rps * (node_weight / sum_of_weights)

Use real load-balancer policy and health-check behavior for production-grade planning.

Example

With 1200 total RPS and weights 40/35/25, node allocation is approximately 480/420/300 RPS.

FAQ

Do weights need to sum to 100?

No. Any positive weights work; values are normalized.

Can this model weighted round-robin?

Yes, it approximates weighted distribution outcomes.

Does this include failover?

No. Model failover separately by removing nodes and recalculating.