Tagged Questions

34
votes
4answers
8k views

Load Balancing in Amazon EC2?

We've been fighting with HAProxy for a few days now in Amazon EC2; the experience has so far been great, but we're stuck on squeezing more performance out of the software load balancer. We're not ...
18
votes
6answers
12k views

Elastic Load Balancing in EC2

Its been on the cards for a while, but now that Amazon have released Elastic Load balancing what are your thoughts on deploying this solution for a high-traffic web app. Should we replace HAProxy or ...
3
votes
4answers
697 views

Load balancing PHP web application with three servers

I have 2 web servers and 1 server that is intended to be used as reverse proxy or load balancer. 2 web servers have real/public IPs as well as the load balancer. Load balancer server is not configured ...
2
votes
1answer
219 views

What's the best practice for getting EC2 instances to join HAProxy automatically?

We're working on scaling out our EC2 architecture to a point where we'd like to manage our own load balancing. We currently have a series of machines configured on HAProxy to do basic load balancing, ...
0
votes
1answer
19 views

URL Specific Balancing

My question has two parts regarding haproxy. Question 1: The service that I am working with deals with uploading massive XML documents, and downloading results that are also pretty large. The ...
0
votes
4answers
425 views

Can I have sticky sessions with HAProxy and socket.io with authentication?

I have several instances of socket.io with authentication running under HAProxy and I need to force that the authentication request and the socket connection go to the same instance. I've set up ...
0
votes
0answers
169 views

load balancing purely dynamic web app on tomcat

I have a web app which is purely dynamic in nature (think of a public API). So I do not need any static file serving or static file caching optimizations. I need to move from one tomcat to multiple ...
0
votes
1answer
108 views

Haproxy: send custom http response when maxconn is hit

Is it possible to send a custom http response back from Haproxy if the load balancer hits maxconn? My intention is to send a busy tone equivalent (but not 503) if the server is busy.
0
votes
2answers
968 views

Load Balancing (HAProxy or other) - Sticky Sessions

I'm working on scaling out my app to multiple servers, and one requirement is that a client is always communicating with the same server (too much live data is used to allow bouncing between servers ...
0
votes
3answers
619 views

Why HAProxy won't listen on port 80?

Fresh machine, no http servers are running (no httpd, no lighttpd, no nginx) $ netstat -nat | grep 80 | grep LISTEN yields nothing... Here's my HAProxy conf, what can be the reason for HAProxy not ...
0
votes
2answers
393 views

Using HAProxy for load-balancing SQL Server 2008

Is it possible/feasible/reasonable to use HAProxy to load-balance three SQL Server 2008 database servers? Here is our situation: we have two web servers that are load-balanced on Amazon EC2. We are ...
0
votes
1answer
623 views

HAProxy and NGINX problems with private IP

I have HAProxy setup, and I have no problem pointing it to the public IP of my App server, but I can't get it to point to the Private IP. I get a "503 Service Unavailable No server is available to ...
0
votes
1answer
601 views

Why won't haproxy capture my cookie?

I'm having trouble getting frontend cookie capture to work in haproxy. I have this in my config: frontend frontend 0.0.0.0:9999 [snip] capture cookie foo len 10 Then I use nc to talk directly to ...