HAProxy and "sharding" - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T08:44:51Zhttp://stackoverflow.com/feeds/question/1049319http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1049319/haproxy-and-sharding0HAProxy and "sharding"Manish V2009-06-26T14:01:22Z2009-08-27T17:04:15Z
<p>I was wondering if anyone has used HAProxy for sharding.
Specifically, I would like to be able use a cookie I define w/a identifier and have any client that presents that cookie/identifier combination be directed to the same server. It seems possible and my preliminary tests seem to work but I am not a sure.</p>
<p>My listen configuration looks like:</p>
<pre><code>listen appli1-rewrite 0.0.0.0:80
cookie mysession= prefix
balance roundrobin
server app1_1 192.168.0.1:80 cookie server01
server app1_2 192.168.0.2:80 cookie server02
option httpclose
</code></pre>
<p>However, when I look at the request headers using Live Http Headers I don't see the mysession cookie indicating which server it will be going to, which is what I expected based on the prefix operation.
I am quite new to HAProxy so any help/guidance would be great!</p>
http://stackoverflow.com/questions/1049319/haproxy-and-sharding/1342423#13424230Answer by Cody Caughlan for HAProxy and "sharding"Cody Caughlan2009-08-27T17:04:15Z2009-08-27T17:04:15Z<p>According to the HAProxy docs I think you need to tweak your haproxy config a little, to have it insert the cookie:</p>
<p>According to:</p>
<p><a href="http://haproxy.1wt.eu/download/1.2/doc/architecture.txt" rel="nofollow">http://haproxy.1wt.eu/download/1.2/doc/architecture.txt</a></p>
<p>You need something like:</p>
<p>cookie SERVERID insert indirect</p>