I have a cloud of server instances running at Amazon using their load balancer to distribute the traffic. Now I am looking for a good way to gracefully scale the network down, without causing connection errors on the browser's side.

As far as I know, any connections of an instance will be rudely terminated when removed from the load balancer.

Ideally, I would like to have a way to inform my instance like one minute before it gets shut down. Another solution might be to make the load balancer somehow not to distribute any traffic anymore to the instance, but without terminating existing connections to it.

My app is node.js based running on Ubuntu. I also have some special software running on it, so I cannot use the many PAAS offering node.js hosting.

Thanks for any hints.

link|improve this question

Are you using ELB to maintain user sessions that are only valid on specific EC2 instances? And if so, how long do those sessions last? – Ray Vahey Oct 10 '11 at 17:42
I don't use ELB for user session management - maybe I will do so for performance reasons only, but I do not rely on this feature. Session management is being done by a central database that all nodes have access to. – Johann Philipp Strathausen Oct 11 '11 at 6:39
Here's the thread about ELB rudely dropping live connections when an instance is removed: forums.aws.amazon.com/thread.jspa?threadID=61278 Amazon asked for feedback, so feel free to add your +1 for fixing this. – Eric Hammond Jan 4 at 23:36
feedback

2 Answers

up vote 2 down vote accepted
+50

This idea uses the ELB's capability to detect an unhealthy node and remove it from the pool BUT it relies upon the ELB behaving as expected in the assumptions below. This is something I've been meaning to test for myself but haven't had the time yet. I'll update the answer when I do.

Process Overview

The following logic could be wrapped and run at the time the node needs to be shut down.

  1. Block new HTTP connections to nodeX but continue to allow existing connections
  2. Wait for existing connections to drain, either by monitoring existing connections to your application or by allowing a "safe" amount of time.
  3. Initiate a shutdown on the nodeX EC2 instance using the EC2 API directly or Abstracted scripts.

"safe" according to your application, which may not be possible to determine for some applications.

Assumptions that need to be tested

We know that ELB removes unhealthy instances from it's pool I would expect this to be graceful, so that:

  1. A new connection to a recently closed port will be gracefully redirected to the next node in the pool
  2. When a node is marked Bad, the already established connections to that node are unaffected.

possible test cases:

  • Fire HTTP connections at ELB (E.g. from a curl script) logging the results during scripted opening an closing of one of the nodes HTTP ports. You would need to experiment to find an acceptable amount of time that allows ELB to always determine a state change.
  • Maintain a long HTTP session, (E.g. file download) while blocking new HTTP connections, the long session should hopefully continue.

1. How to block HTTP Connections

Use a local firewall on nodeX to block new sessions but continue to allow established sessions.

For example IP tables:

iptables -A INPUT -j DROP -p tcp --syn --destination-port <web service port>
link|improve this answer
Thanks for the ideas! Unfortunately, assumption number 2 seems to be the important one that is being missing. As far as I know, a node exists about 40-60 seconds after being detected as ill, with no guarantee. But sadly, it is already being removed immediately without any warning from the ELB and any existing connections are terminated and not forwarded to another node. This is what I know, but I could try to experiment with it... – Johann Philipp Strathausen Oct 11 '11 at 18:57
It's good that it detects it as down and removes it, that's what we want. But also removing the existing connections would certainly give us problems, I wouldn't rule this out without a test because I've seen other loadbalancing software work this way... Otherwise, are you able to use sub domains with the load balancer so that it only establishes the initial connection? E.g. balance.domain.com diverts to nodeX.domain.com? Where nodeX is the next one in a round-robin pool etc. – Ray Vahey Oct 12 '11 at 4:29
ELB itself doesn't support using sub-domains - but a machine could know about its own name. I could even have a set of machines mapped to domain names via dns entries - don't know how to do it automatically though. Since I pay most of the money to instances running, and paused instances are pretty cheap, this may be an option. So I'd use the ELB for the initial distribution, and from then on maybe use the node a user has been assigned to. This may work! Any idea on how to best use subdomains instead of AWS machine urls? (I want to use wildcard-ssl for a single domain). – Johann Philipp Strathausen Oct 14 '11 at 10:04
hmm, this wouldn't work with a wildcard cert because the cert must be tied to a single static IP. You'd need individual certs for each node. – Ray Vahey Oct 14 '11 at 11:08
1  
Thanks, I just searched and that looks like I was wrong about binding to one IP. stackoverflow.com/questions/909453/… – Ray Vahey Oct 18 '11 at 12:10
show 2 more comments
feedback

The recommended way for distributing traffic from your ELB is to have an equal number of instances across multiple availability zones. For example:

ELB

  • Instance 1 (us-east-a)
  • Instance 2 (us-east-a)
  • Instance 3 (us-east-b)
  • Instance 4 (us-east-b)

Now there are two ELB APIs of interest provided that allow you to programmatically (or via the control panel) detach instances:

  1. Deregister an instance
  2. Disable an availability zone (which subsequently disables the instances within that zone)

The ELB Developer Guide has a section that describes the effects of disabling an availability zone. A note in that section is of particular interest:

Your load balancer always distributes traffic to all the enabled Availability Zones. If all the instances in an Availability Zone are deregistered or unhealthy before that Availability Zone is disabled for the load balancer, all requests sent to that Availability Zone will fail until DisableAvailabilityZonesForLoadBalancer calls for that Availability Zone.

Whats interesting about the above note is that it could imply that if you call DisableAvailabilityZonesForLoadBalancer, the ELB could instantly start sending requests only to available zones - possibly resulting in a 0 downtime experience while you perform maintenance on the servers in the disabled availability zone.

The above 'theory' needs detailed testing or acknowledgement from an Amazon cloud engineer.

link|improve this answer
Sounds promising, I didn't think of that! I'll definitely check this out! Thanks. – Johann Philipp Strathausen Nov 3 '11 at 11:19
feedback

Your Answer

 
or
required, but never shown

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