HAProxy supports modifying or inserting a cookie to provide session persistence with the cookie
parameter.
In either backend or listen sections, add the following:
cookie COOKIENAME prefix
This example will modify an existing cookie by adding the name of the server to a cookie called COOKIENAME
. Your client will see something like server1~someotherdata
but your application will only see the someotherdata
part. So you can use this on existing cookies. Additionally this method allows you to only enforce session persitence when that cookie exists, meaning you can still evenly balance people around the static portions of your site and only enforce stickyness when needed, but adding that cookie name to the session.
Also name your servers, so your server lines look like the following:
server server1 1.2.3.4 cookie server1
More detail is in the HAProxy config guide, it also looks like you can use the appsession
config parameter as well.
Once you've done this, you can pick your own balance method from the list, I tend to use roundrobin
but leastconn
might give you a better balance once sticky sessions are taken into account.
More from documentation to make it easier to find reference section:
cookie <name> [ rewrite | insert | prefix ] [ indirect ] [ nocache ]
[ postonly ] [ preserve ] [ domain <domain> ]*
[ maxidle <idle> ] [ maxlife <life> ]
Enable cookie-based persistence in a backend.
May be used in sections : defaults | frontend | listen | backend
yes | no | yes | yes
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…