vote up 0 vote down star

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.

My listen configuration looks like:

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

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!

flag

0% accept rate
You should try to ask this on serverfault.com as it is more of an IT question than a programming one. You'll probably have more luck there. – Renaud Bompuis Jun 26 at 14:05
What's sharting? – Rhythmic Fistman Jun 26 at 14:16

1 Answer

vote up 0 vote down

According to the HAProxy docs I think you need to tweak your haproxy config a little, to have it insert the cookie:

According to:

http://haproxy.1wt.eu/download/1.2/doc/architecture.txt

You need something like:

cookie SERVERID insert indirect

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.