]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: balance uri: added 'whole' parameter to include query string in hash calculation
authorOskar Stolc <oskar.stolc@gmail.com>
Sat, 19 May 2012 09:19:54 +0000 (10:19 +0100)
committerWilly Tarreau <w@1wt.eu>
Tue, 22 May 2012 05:56:54 +0000 (07:56 +0200)
commit8dc4184c57aa826bc3bf5c13dfed754fec678654
treeffaace7c20c2c91f088aab9d873f09ca06cf2b82
parentd88fd824b7f0f1dd53fd962ffdfed82661a25b09
MINOR: balance uri: added 'whole' parameter to include query string in hash calculation

This patch brings a new "whole" parameter to "balance uri" which makes
the hash work over the whole uri, not just the part before the query
string. Len and depth parameter are still honnored.

The reason for this new feature is explained below.

I have 3 backend servers, each accepting different form of HTTP queries:

http://backend1.server.tld/service1.php?q=...
http://backend1.server.tld/service2.php?q=...

http://backend2.server.tld/index.php?query=...&subquery=...

http://backend3.server.tld/image/49b8c0d9ff

Each backend server returns a different response based on either:
- the URI path (the left part of the URI before the question mark)
- the query string (the right part of the URI after the question mark)
- or the combination of both

I wanted to set up a common caching cluster (using 6 Squid servers, each
configured as reverse proxy for those 3 backends) and have HAProxy balance
the queries among the Squid servers based on URL. I also wanted to achieve
hight cache hit ration on each Squid server and send the same queries to
the same Squid servers. Initially I was considering using the 'balance uri'
algorithm, but that would not work as in case of backend2 all queries would
go to only one Squid server. The 'balance url_param' would not work either
as it would send the backend3 queries to only one Squid server.

So I thought the simplest solution would be to use 'balance uri', but to
calculate the hash based on the whole URI (URI path + query string),
instead of just the URI path.
doc/configuration.txt
include/types/proxy.h
src/backend.c