cos: (Default)
[personal profile] cos
You have two web servers, and one load balancer. Every connection comes into the load balancer, which then decides which of the two web servers to send that connection to; the web server handles it, and the connection is closed. Connections are coming in at a rate of a few hundred a minute, and each of them takes a few seconds to complete, so each web server typically has a few connections open at any given time. The load balancer knows how many connections each server has open.

If the load balancer always picked the server with the fewest current connections, for each new connection (or picked at random if both have the same number), then load would be very evenly balanced - each web server would have the same number of open connections, or one would have 1 more than the other.

However, it may be desireable to avoid sending the same user's connections to different web servers on the same visit to the site. Each user typically makes many connections, seconds or minutes apart. So we change the load balancer algorithm a little bit:
    When a connection comes in from a "new" place, pick a web server as before: either the one with the fewest connections right now, or randomly if they both have the same number.

    Remember where that connection came from, and which server got selected.

    If a connection comes on from a place that already has a web server picked for it, send it to that same web server.

    Forget the association between a place and a web server if no connections have come from that place in the past 20 minutes.
A "place" is a /28 IP range, but if you're not an Internet geek you can get away with just assuming that a "place" is a physical location - a house, an office, a wireless cafe. Multiple people may be browsing from the same place, but the load balancer can't tell the difference.

At first blush, it seems like if you forget any place that hasn't connected in the past 20 minutes, and you don't have a significant percentage of connections coming from the same place (or the same few places), this should still distribute load fairly evening. However, I recently observed a pattern like this:
  • A much larger number of people than usual visited the site during a half hour period.

  • Web server #1 saw a sudden spike from about 2.5 connections per second to about 6-7 connections per second, in less than a minute. The high rate continued for about 20 minutes, then sharply dropped back to the normal rate of about 2.5 connections per second.

  • Web server #2 saw a gradual climb, over the course of about five minutes, from 2.5 conn/s to about 5 conn/s. After 5 more minutes it peaked at around 5.5, then slowly went down, and eventually gradually came down to about 2.5 conn/s.

  • Over the course of the highest-traffic 20 minutes, Web server #1 received a total of 35% more connections than Web server #2.
Under what circumstances would the load balancing algorithm I describe behave like this?

Assumptions (aka observed facts):
- Connections were coming in from a wide range of places, with no one place accounting for 1% or more

Variables (things which define the "circumstances" under which the algorithm behaves differently):
- Time to complete a connection can vary between under 1 second and as many as 30 seconds.
- Time to complete a connection could partially depend on number of current connections
- Distribution of places that make few connections vs. places that make more connections can vary widely. Maybe every place that connects connects 100-400 times; or maybe 50% connect just once or twice each, while the other 50% connect many times each.
Date: 2007-05-21 00:53 (UTC)

From: [identity profile] dossy.livejournal.com
You've just observed the reason why people avoid "sticky session" support in load balancers, combined with the "stampeeding herd" effect.

Date: 2007-05-21 01:54 (UTC)

From: [identity profile] dossy.livejournal.com
I'm guessing my answer didn't help you understand what you were looking at. OK, let me explain:

Server A has no active sessions. Server B is currently busy completing responses for 10 ongoing requests.

All of a sudden, the stampeding herd shows up at your door. 5 requests come in all at the same time. Since Server A has less open requests than server B, the load balancer dumps all 5 requests onto Server A at once. Trampled.

Now, with your "sticky session" badness, all 5 of those requests, coming from 5 distinct /28's, make a second request. At the same time. Regardless of whether Server B completed responding to its 10 responses or not, the load balancer dumps those 5 new requests onto Server A. Trampled.

The moral of this story is: Friends don't let friends use "sticky session" load balancing. It's bad, mmmkay?
Date: 2007-05-21 03:44 (UTC)

From: [identity profile] 477150n.livejournal.com
This makes sense regarding the near-instant slamming of Server A. It also seems to explain the long decay time on Server B. If a user spends about some amount of time tying up Server A, then leaves, a new request not from that person will be sent to Server B instead.

Thus, if the number of hits is large enough, the duration of the transient on Server B is a measure of the average stay. The model I have in mind is decay, for instance from a radioactive source. You may have encountered this problem in a calculus class. Is the average stay about five minutes? I'm guessing a little less, because the actual average stay would be the time at which the value is 1/e of the way there.

It's complicated by the fact that some new sessions go onto Server B which don't represent sessions leaving Server A. It's my bedtime now, but I'll try to come up with a specific mathematical model in the morning. As my theorist friends say, "It's an interesting problem..."
Date: 2007-05-21 10:31 (UTC)

From: [identity profile] merinslips.livejournal.com
It sounds right that it has something to do with the time a given place is spending looking at the site.

Is that information available as well? Also, in general, how could I see information like where connections are coming from? I remember diaryland.com how a tool that let you see who was looking at your page and for how long. Is there something like that for livejournal or for any site at all, for anyone?
Date: 2007-05-21 13:17 (UTC)

From: [identity profile] dossy.livejournal.com
You explained that requests complete with varying durations. Is it possible that both server A and server B were each busy responding to 10 requests each (fair load balancing), server A completed more requests than server B at some point in time, then before server B finished responding to its requests, the stampeding herd arrived?

Unlikely scenario? Sure. It's like centipedes in your ... well ... anyway, it's more likely than you think. :-)

(*waves to [livejournal.com profile] merinslips ... small world! :-)

February 2025

S M T W T F S
      1
2345678
91011121314 15
16171819202122
232425262728 

Most Popular Tags

Style Credit

Expand Cut Tags

No cut tags
Page generated Mar. 16th, 2026 17:30
Powered by Dreamwidth Studios