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?