Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was trying to read up on load balancing in Windows Azure, and all the information about it is extremely vague and non-specific. All I really want is a simple answer: how does Azure perform load balancing?

Many applications use sessions or in-memory data to increase performance. With Azure, I'm not sure if this is possible, because (from what I can tell), Azure doesn't have any sort of "sticky" sessions. Even if it wasn't session-based, but simply IP-based balancing, that would be enough for many applications.

So, the question of the day - how exactly does Azure perform its load balancing?

share|improve this question

3 Answers

up vote 10 down vote accepted

Ok to give a correct answer here - Azure DOES support load balancing in front of both web and worker roles (so the answer marked as best on this thread is completely wrong), but it does not support Affinity load balancing which is what jvenema was asking for I think. The current implementation uses round robin behaviour.

share|improve this answer
Good clarification Andy; I appreciate that. I should have been clearer in the question initially. – jvenema Nov 11 '10 at 15:26
You're v.welcome :-) – Andy Britcliffe Nov 11 '10 at 19:51
What if there is only one client application which calls Azure based service; will this traffic always be routed to one particular web role? – Tarkus Sep 3 '11 at 17:40
1  
@Tarkus - no it will still be sent round robin to all web roles you have deployed. There is no way to specifically target a particular role instance other than only have 1 instance deployed for that role. – Andy Britcliffe Sep 14 '11 at 12:04

Azure handles load-balancing for table storage and SQL Azure by distributing traffic across the instances you set up.

For things like session state with a traditional asp.net app, the session data would be stored in table storage, which would then be available to all your webrole instances. This is mentioned here.

Windows Azure provides load balancing across each public endpoint, allowing you to scale your application to as many instances as you'd like. You need to ensure that your application is stateless (or stores state in a common area across instances, such as blobs or tables). The only endpoints not load-balanced are internal endpoints. So, if you're doing some type of inter-role communication, like from a web role to one of several worker role instances hosting a wcf service on an internal endpoint, you'd need to handle load balancing across those instances.

share|improve this answer

I think you might be looking for Windows Azure AppFabric and Velocity, specifically. Take a look at one of the PDC sessions for more info.

share|improve this answer
I've read about AppFabric - this is where we get into the "it load balances, but we're not going to tell you how" mumbo jumbo. – jvenema Feb 14 '10 at 22:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.