https://issues.apache.org/bugzilla/show_bug.cgi?id=49460
Summary: loadbalancer documentation example is misleading
Product: Apache httpd-2
Version: 2.2.15
Platform: All
Status: NEW
Severity: normal
Priority: P2
Component: Documentation
AssignedTo: bugs@httpd.apache.org
ReportedBy: tvr1@cornell.edu
The following snip from the mod_proxy balancer setup indicates that the
loadfacter=20 is going to the less powerful server. That seems counter
intuitive since you would want a lower loadfactor on the less powerful server.
I believe this documentation has been wrong forever.. so I thought I'd file a
bug.
A sample balancer setup
ProxyPass /special-area http://special.example.com smax=5 max=10
ProxyPass / balancer://mycluster/ stickysession=JSESSIONID|jsessionid
nofailover=On
<Proxy balancer://mycluster>
BalancerMember http://1.2.3.4:8009
BalancerMember http://1.2.3.5:8009 smax=10
# Less powerful server, don't send as many requests there
BalancerMember http://1.2.3.6:8009 smax=1 loadfactor=20
</Proxy>
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org
|