Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As far as I understand AWS Elastic Beanstalk will allow you to set auto-scaling, which means that you can use a micro-instance overnight, say, and auto-scale up during the day. Can you still take advantage of reserved EC2 instance pricing if you do this?

share|improve this question

1 Answer

up vote 8 down vote accepted

Can you still take advantage of reserved EC2 instance pricing if you do this?

Absolutely, Amazon EC2 reserved instance billing and usage is handled transparently, i.e. AWS simply applies your reserved instance pricing as long as you have reserved instances available matching your running ones by type, region and availability zone, see the following FAQs for details:

Beware of the restrictions regarding how instances from this virtual pool are matched though, e.g.:

The latter is easily overlooked when starting instances without explicitly specifying an availability zone, which will yield a random one in turn.

share|improve this answer
Thank you, a very comprehensive answer. So, just to be absolutely clear, if I have a reserved micro-instance and the beanstalk scales up beyond its capacity I'll pay an on-demand price while it is scaled to that level? – Chris Wheadon Oct 11 '12 at 18:14
Yes - in more general terms: You'll pay the on-demand price for every additional running instance above the number of reserved instances you have purchased. Obviously you could purchase more than one reserved instance, e.g. a heavy utilization one to cover the 24/7 instance and one (or more) medium or light utilization instance(s) covering the additional daily scale out scenario. – Steffen Opel Oct 13 '12 at 15:34

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.