| Did people really read the article ? For me it was pretty clear, maybe it involves some regular load-balancing terms that people are not familiar with, because I'm seeing a lot of bullshit written in the comments, but here is what is described there : - in a traditional L4/L7 load balancing setup (typically what is described in my very old white paper "making applications scalable with load balancing"), the first layer (L3-4 only, stateless or stateful) is often called the "director". - the second level (L7) necessarily is based on a proxy. For the director part, LVS used to be used a lot over the last decade, but over the last 3-4 years we're seeing ECMP implemented almost in every router and L3 switch, offering approximately the same benefits without adding machines. ECMP has some drawbacks (breaks all connections during maintenance due to stateless hashing). LVS has other drawbacks (requires synchronization, cannot learn previous sessions upon restart, sensitivity to SYN floods). Basically what they did is something between the two for the director, involving consistent hashing to avoid having to deal with connection synchronization without breaking connections during maintenance periods. This way they can hack on their L7 layer (HAProxy) without anyone ever noticing because the L4 layer redistributes the traffic targeting stopped nodes, and only these ones. Thus the new setups is now user->GLB->HAProxy->servers. And I'm very glad to see that people finally attacked the limitations everyone has been suffering from at the director layer, so good job guys! |