Re: http-keep-alive with SSL backend

2014-11-30 Thread Pavlos Parissis
On 30/11/2014 01:17 μμ, Cyril Bonté wrote: > > Hi again Sachin, > > Le 30/11/2014 13:01, Sachin Shetty a écrit : >> Thanks Cyril, but no luck, I still see no connection reuse. For every new >> connection from the same client, haproxy make a new connection to the >> server and terminates it right

Re: http-keep-alive with SSL backend

2014-11-30 Thread Sachin Shetty
Thanks Cyril, appreciate your help on this. I will take this up internally on how we could workaround it. Thanks again. Thanks Sachin On 11/30/14 5:47 PM, "Cyril Bonté" wrote: > >Hi again Sachin, > >Le 30/11/2014 13:01, Sachin Shetty a écrit : >> Thanks Cyril, but no luck, I still see no conne

Re: http-keep-alive with SSL backend

2014-11-30 Thread Cyril Bonté
Hi again Sachin, Le 30/11/2014 13:01, Sachin Shetty a écrit : Thanks Cyril, but no luck, I still see no connection reuse. For every new connection from the same client, haproxy make a new connection to the server and terminates it right after. Then, ensure that it can't be due to a explicit b

Re: http-keep-alive with SSL backend

2014-11-30 Thread Sachin Shetty
Thanks Cyril, but no luck, I still see no connection reuse. For every new connection from the same client, haproxy make a new connection to the server and terminates it right after. Lukas, as per the documentation, the 1.5 dev version does support server side pooling. http://cbonte.github.io/hapr

Re: http-keep-alive with SSL backend

2014-11-30 Thread Cyril Bonté
Hi all, Le 30/11/2014 11:54, Lukas Tribus a écrit : Hi Sachin, Hi, We have SSL backends which are remote, so we want to use http-keep-alive to pool connections Connection pooling/multiplexing is simply not (yet) supported. Its is therefor expected behavior that 1 frontend connection equals

Re: http-keep-alive with SSL backend

2014-11-30 Thread Lukas Tribus
Hi Sachin, > Hi, > > We have SSL backends which are remote, so we want to > use http-keep-alive to pool connections Connection pooling/multiplexing is simply not (yet) supported. Its is therefor expected behavior that 1 frontend connection equals 1 backend connection. Regards, Lukas

http-keep-alive with SSL backend

2014-11-29 Thread Sachin Shetty
Hi, We have SSL backends which are remote, so we want to use http-keep-alive to pool connections to the the SSL backends, however it does not seem to be working: backend qa option http-keep-alive timeout http-keep-alive 30s server qa :443 maxconn 100 ssl verify none I am monito