Fastest Load Balancing

Contents

HTTP Fastest Load Balancing Alogorithm

Synopsis

Short-response-time servers have the capability of responding to more requests. The "fastest" load balancing algorithm can forward requests to servers with shorter response time.

Directives

fastest

Syntax fastest;
Default
Context Upstream

Enables the "fastest" load balancing algorithm.

Example:

upstream pool {
      fastest;
      server 10.5.1.145;
      server 10.5.1.146;
}