Re: Configuration API?

2011-02-07 Thread Bedis 9
Do you have an example of what purpose it would serve ? I'm asking because it's not very easy to implement with table-based algorithms, since the size of the table is determined by the GCD of all active servers' weights. Thus adding a new server will change the size of the table. It's also

Re: node frequently goes down on another physical machine

2010-12-29 Thread Bedis 9
Hi Amit, Try a netstat -in and see if you have any errors on your interfaces :) might help to figure out if you have a duplex mismatch. cheers On Wed, Dec 29, 2010 at 8:04 AM, Amit Nigam amitni...@gobindas.in wrote: Hi Willy, Thanks for your support, makes me believe I would solve this

Re: Server chk sanity check

2010-12-02 Thread Bedis 9
On Thu, Dec 2, 2010 at 7:54 AM, Willy Tarreau w...@1wt.eu wrote: Hi Richard, On Tue, Nov 30, 2010 at 01:10:01PM +, Richard Shaw wrote: Hi, I've got two identical web servers physically close and on the same subnet, one of them shows a significantly higher number of server chk's (5320)

Re: Support for SSL

2010-11-17 Thread Bedis 9
Hi John, Without entering too much in details, we have a mutualized reverse proxy cache platform in order to accelerate HTTP content (you can call it CDN ;) ) on which we use an HTTP reverse proxy caches coded by a third party company. The reverse proxy software run over a centos linux and has a

Re: Support for SSL

2010-11-17 Thread Bedis 9
I wish I could use OpenSource solution. But my company refused so I had to follow their requirements (actually, the requirement was to use this specific software :D) and yes, our oldies do their job on SSL :) (If it works, don't fix it!!!) On Wed, Nov 17, 2010 at 5:05 PM, John Marrett

Re: health check on httpd load average

2010-11-17 Thread Bedis 9
Hi, I'm not (yet) an HAproxy expert, but your scenario is good enough if the application hosted on the backend servers is sessionless or not... If you don't need session, then your scenario could work. (be careful that all your backend won't answer a 5xx at the same time ;) ) If you need session

Re: Limiting throughput with a cold cache

2010-11-16 Thread Bedis 9
Hi, By the way, why using Squid? Have you already tried Varnish? It has a grace function which might help you :) During grace period, varnish serves stale (but cacheable) objects while retriving object from backend. Of course, it depends if that solution makes sense with your application. And

Re: Limiting throughput with a cold cache

2010-11-15 Thread Bedis 9
Hi Dmitri, First, let me summarize your issue and tell me if I'm wrong. you have a haproxy balancing traffic to squid in reverse-proxy mode using hash URL as metric. The problem you have, is when a cache gets up after a crash, it's in trouble because of getting too much MISS requests. Are your