Score:0

Distributing load over multiple load balancers

se flag

Given a website that could have many hundreds of thousands of concurrent users at peak times how can one manage the laod where load balancer resources can only support 40,000 concurrent connections? (System spec, out of my control)

The only method I can think is to round robbin style redirect all incoming traffic to one of X subdomains (eg. 1.domain.com, 2.domain.com... X.domain.com) where each subdomain points to a different load balancer. Is this kind of redirect and hand off costly from a server perspective? Will it cause browser warnings (eg. page www.domain.com is trying to redirect you to...)? Is there a better method that I'm overlooking? (Execept get a bigger load balancer)

Is there a 'right' way to do this?

Score:0
cn flag

A common solution would be to use a Global Server Load Balancer or GEO. In this case user's DNS queries would be distributed to different IP addresses (each mapping to the separate load balancer). Most GLSBs include healthchecks on Load Balancer endpoints (if one fails stop sending users to this IP) and also can be used to route users to the most optimal endpoint where load balancers are spread across the world ie Send Europe Traffic to the Europe end point etc.

This solution would remove the need for the redirect you mentioned which themselves could add unnecessary load to a s

Score:0
cn flag

I have few deployment behind me using dynamic routing protocols like OSPF. There was little trigger script written in bash that checked if proxy/app server is working properly and then start/stop bgpd/ospfd (or just add announcement using vtysh). this routing daemon announced one ip address in network (/32 subnet) and then routers split traffic equally if two paths had same cost - it's called ECMP (Equal-cost multipath).

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.