Mod proxy byrequests Load Balancing Method

From NovaOrdis Knowledge Base
Revision as of 23:06, 9 January 2017 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

External

Internal

Overview

This method performs weighted request counting.The load balancer counts requests and distributes the requests among the members based on a configured “loadfactor”. By default, all members have equal load factors.

ProxyPass / balancer://mycluster/ 

<Proxy balancer://mycluster>
    BalancerMember http://node1 loadfactor=1 
    BalancerMember http://node2 loadfactor=2 # node2 has twice as many resources as 1
    BalancerMember http://node3 loadfactor=3 # node3 has twice as many resources as 1
    ProxySet lbmethod=byrequests
    ...
</Proxy>