Load Balancing in Amazon EC2? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T10:56:28Z http://stackoverflow.com/feeds/question/260413 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/260413/load-balancing-in-amazon-ec2 12 Load Balancing in Amazon EC2? Marc Bollinger 2008-11-04T00:10:24Z 2009-05-18T12:32:59Z <p>We've been fighting with <a href="http://haproxy.1wt.eu/" rel="nofollow">HAProxy</a> 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 exactly Linux networking whizzes (we're a .NET shop, normally), but we've so far held our own, attempting to set proper ulimits, inspecting kernel messages and tcpdumps for any irregularities. So far though, we've reached a plateau of about 1,700 requests/sec, at which point client timeouts abound (we've been using and tweaking <a href="http://www.hpl.hp.com/research/linux/httperf/" rel="nofollow">httperf</a> for this purpose). A coworker and I were listening to the most recent Stack Overflow podcast, in which the Reddit founders note that their entire site runs off one HAProxy node, and that it so far hasn't become a bottleneck. Ack! Either there's somehow not seeing that many concurrent requests, we're doing something horribly wrong, or the shared nature of EC2 is limiting the network stack of the Ec2 instance (we're using a large instance type). Considering the fact that both Joel and the Reddit founders agree that network will likely be the limiting factor, is it possible that's the limitation we're seeing? </p> <p>Any thoughts are greatly appreciated!</p> <p><strong>Edit</strong> It looks like the actual issue was not, in fact, with the load balancer node! The culprit was actually the nodes running httperf, in this instance. As httperf builds and tears down a socket for each request, it spends a good amount of CPU time in the kernel. As we bumped the request rate higher, the TCP FIN TTL (being 60s by default) was keeping sockets around too long, and the ip_local_port_range's default was too low for this usage scenario. Basically, after a few minutes of the client (httperf) node constantly creating and destroying new sockets, the number of unused ports ran out, and subsequent 'requests' errored-out at this stage, yielding low request/sec numbers and a large amount of errors. </p> <p>We also had looked at nginx, but We've been working with RighScale, and they've got drop-in scripts for HAProxy. Oh, and we've got too tight a deadline [of course] to switch out components unless it proves absolutely necessary. Mercifully, being on AWS allows us to test out another setup using nginx in parallel (if warranted), and make the switch overnight later on.</p> <p><a href="http://ipsysctl-tutorial.frozentux.net/chunkyhtml/" rel="nofollow">This page</a> describes each of the sysctl variables fairly well (ip_local_port_range and tcp_fin_timeout were tuned, in this case).</p> http://stackoverflow.com/questions/260413/load-balancing-in-amazon-ec2/262184#262184 3 Answer by tumbleweed for Load Balancing in Amazon EC2? tumbleweed 2008-11-04T15:29:48Z 2008-11-04T15:29:48Z <p>Not really an answer to your question, but nginx and pound both have good reputations as load-balancers. Wordpress just <a href="http://barry.wordpress.com/2008/04/28/load-balancer-update/" rel="nofollow">switched to nginx</a> with good results.</p> <p>But more specifically, to debug your problem. If you aren't seeing 100% cpu usage (including I/O wait), then you are network bound, yes. EC2 internally uses a gigabit network, try using an XL instance, so you have the underlying hardware to yourself, and don't have to share that gigabit network port.</p> http://stackoverflow.com/questions/260413/load-balancing-in-amazon-ec2/265946#265946 1 Answer by Sargun Dhillon for Load Balancing in Amazon EC2? Sargun Dhillon 2008-11-05T17:26:18Z 2009-04-13T21:41:47Z <p>I would look at switching to a off-site load balancer, not in the cloud and run something like IPVS on top of it. [The reason why it would be off of amazon's cloud is because of kernel stuff] If Amazon doesn't limit the source IP of packets coming out of the you could go with a unidirectional load balancing mechanism. We do something like this, and it gets us about 800,000 simultaneous requests [though we don't deal with latency]. I also would say use "ab2" (apache bench), as it is a little more user friendly, and easier to use in my humble opinion.</p> http://stackoverflow.com/questions/260413/load-balancing-in-amazon-ec2/877507#877507 1 Answer by stevemegson for Load Balancing in Amazon EC2? stevemegson 2009-05-18T12:32:59Z 2009-05-18T12:32:59Z <p>Not answering the question directly, but EC2 now supports load balancing through <a href="http://aws.amazon.com/elasticloadbalancing/" rel="nofollow">Elastic Load Balancing</a> rather than running your own load balancer in an EC2 instance.</p>