views:

534

answers:

2

I am looking at the pricing of various cloud computing platforms, particularly Amazon's EC2, and a lot of the quotes are based on a unit called an Instance-Hour.

I am trying to get a handle on the exact definition of an instance-hour to better compare the costs of continuing to host a web-application versus putting it out on the cloud.

(1) Does it correspond to any of the Windows perfmon counters in such a way that I could benchmark our current implmentation and use it in their pricing calculators?

(2) How does a multi-processor instance figure into the instance-hour calculation?

+3  A: 

An instance hour is simply a regular hour where the instance was available to you, wether you used it or not. Amazon has priced their different types of instances differently, so you pay for the type of resource you are getting, not how much you use it.

So... 1. No, it's just a regular hour. 2. It doesn't, it's already factored into the price you pay for the instance pr hour.

kasperjj
+1  A: 

Note also that instance hours are billed rounded up (for Amazon EC2). So starting up an instance and immediately shutting it down again incurs the cost of 1 instance hour.

That is a good point. If you open an instance twice and close it quickly within the same hour does that get counted as 1 hour or two?
JohnFx
The reason I ask is that during configuration I am pretty good to shut it down when I get called away on other tasks and only keep it running while I am actually working on it. Depending on how this is calculated I might be better off leaving it up rather than turning it on and off repeatedly.
JohnFx