Thank you very much
So enabling client and server persistent connections does not perform
maintaining connection to particular cache_peer is it so?
Regards
senthil
Amos Jeffries wrote:
senthilkumaar2021 wrote:
Hi All,
I want to setup a reverse proxy for a web server.There are two web
servers which has the same content.
cache_peer parent 172.16.1.48 80 0 origin-server
cache_peer parent 172.16.1.49 80 0 origin-server
When client requests a web page if the server 172.16.1.49 serves the
first request i want all the connections to be with same server not
with 172.16.1.48
Is it possible by enabling client_persistent connections on and
server_persistent_connections on?
If so if i use round-robin in cache_peer also it works
round-robin is the opposite of what you want.
Use the source-hash selection method. This 'pinns' each particular
client IP to a particular parent proxy.
The downside is that traffic levels are unbalanced, but it does
guarantee that as long as your parent proxies are unchanged and alive
each client is sent out via a fixed parent.
Amos