Queuing Rule of Thumb
Wiki The Queueing Rule of Thumb (QROT) is an inequality that relates the number of servers, the number of service requestors, service time per requestor per server, and the maximum time to empty the queue as: num_server > (num_requestor * service_time) / max_drain_time Note: the servers are parallel. Most of this rule of thumb comes from algebraically moving around common metrics like arrival rate and service rate, but the core insight is in this invariant: arrival_rate / service_rate < num_servers. ...