If a site has 2 load balancers for redundancy reason, which one should the DNS points to? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T06:17:39Zhttp://stackoverflow.com/feeds/question/478664http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/478664/if-a-site-has-2-load-balancers-for-redundancy-reason-which-one-should-the-dns-po4If a site has 2 load balancers for redundancy reason, which one should the DNS points to?Henry2009-01-26T01:53:04Z2009-01-26T13:40:11Z
<p>If I simply point to both in my DNS record, wouldn't 50% of traffic be in trouble as well?</p>
http://stackoverflow.com/questions/478664/if-a-site-has-2-load-balancers-for-redundancy-reason-which-one-should-the-dns-po/478670#4786702Answer by David Thomas Garcia for If a site has 2 load balancers for redundancy reason, which one should the DNS points to?David Thomas Garcia2009-01-26T02:00:50Z2009-01-26T02:00:50Z<p>You can point to both in your DNS. When one of them goes down, the user's browser will make a request, notice something is wrong and request a new A Record. The second A Record should be valid and working still.</p>
http://stackoverflow.com/questions/478664/if-a-site-has-2-load-balancers-for-redundancy-reason-which-one-should-the-dns-po/478690#4786902Answer by Macon Pegram for If a site has 2 load balancers for redundancy reason, which one should the DNS points to?Macon Pegram2009-01-26T02:17:53Z2009-01-26T02:17:53Z<p>There's any number of ways to look at this. When you start looking at these types of things you'll likely see terminology like "Active-Active" or "Active-Passive" setup.</p>
<p>What you're describing is an "Active-Active" setup where both the primary and "failover" hardware are serving customer's needs. Active-Passive generally means there's some manual portion to failover from the "active" server to the standby "passive" server. </p>
<p>Either configuration is perfectly legitimate and the correct answer to your question really comes down to an analysis of your individual situation. Things to consider:
1. Are both pieces of hardware equivalent? (IE: will your customers have the same experience regardless of which path they take through your infrastructure).</p>
<ol>
<li><p>Is it worth the cost of running both instances all the time?</p></li>
<li><p>What is the impact of down time during failover? (IE: How long will you be down? How much would such an outage cost you).</p></li>
<li><p>Are the elements of your maintenance process (upgrades, backups) where active-active is helpful? (IE: upgrading software on the servers behind the load balancer, upgrading the load balancer itself, etc). These are scenarios where you would pull one member out of the pair, do the upgrade work, and re-route traffic to the upgraded member while you upgrade the second member. </p></li>
</ol>
<p>In general Active-Active is more costly but gives you the least risk of impact to your customers. So the "right" answer has more to do with business aspects than technical ones.</p>
<p>Now if all things aren't equal you might want to look at things like:</p>
<ol>
<li><p>Pre-existing (not your application) load on each of the balancers.</p></li>
<li><p>Hardware/capacity on each.</p></li>
<li><p>Age (is one close to end of life, or likely to fail soon?)</p></li>
<li><p>Location (if you're talking multi-datacenter... geo-location might impact performance).</p></li>
</ol>
<p>I know I didn't give you a "DO this" answer... but hopefully I've provided some insight into the types of considerations you'd make when arriving at your answer. </p>
http://stackoverflow.com/questions/478664/if-a-site-has-2-load-balancers-for-redundancy-reason-which-one-should-the-dns-po/479806#4798062Answer by Alnitak for If a site has 2 load balancers for redundancy reason, which one should the DNS points to?Alnitak2009-01-26T13:35:08Z2009-01-26T13:40:11Z<p>There are easy ways of providing resilient services using one IP address that needn't cost the earth.</p>
<p>For example, you can just configure the public IP address onto a loopback interface onto each of the proxy servers and then announce it via the OSPF routing protocol (or similar) into your internal routing tables.</p>
<p>If a server dies completely, the route is withdrawn from your interior routing tables and traffic automatically stops flowing to the dead server within 30 seconds.</p>
<p>In most networks this solution costs <em>nothing</em>. The OSPF routing can be done using <a href="http://www.quagga.net/" rel="nofollow">Quagga</a> if your proxies are running Linux or some other UNIX variant.</p>
<p>Your internal network will need to be able to speak OSPF too, but that comes out of the box with most Cisco or Juniper class hardware. You <em>are</em> planning to run some reasonably OK network gear to support these thousands of sites, aren't you ;-) ?</p>
<p>FWIW, I've used a similar technique in the past to handle fail-over of large scale shared web-hosting from one data center to another.</p>