According to pricing details on the Microsoft Windows Azure website, compute hours cost 12 cents each, but what are they?
feedback
|
migrated from stackoverflow.com Oct 21 '09 at 0:30
This question came from our site for professional and enthusiast programmers.
closed as too localized by Mark Henderson♦ Jan 13 at 4:48
This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.
|
This is the time that your process (Hosted by Azure) is loaded and executing. Your charges are calculated by a combination of Compute Hour and bandwidth used. I see that someone is trying to close this Question. I think this is a fair question for stackoverflow, it's on the edge of being a programming question (Azure compute is an environment very relevant to programming) and doesn't fit nicely anywhere else. | |||||
feedback
|
|
Just to give a definitive response (I work on the Windows Azure team), Chris Lutz's answer is absolutely correct. | |||||
feedback
|
|
I'd like to note that there are Virtual Machines with different number of CPU Cores. To say, if you have a CPU with 4 cores, your compute hour will cost 4*0,12 = 0.48$ | |||
|
feedback
|
|
To elaborate on Chris Lutz's Definition/Explanation. The charge is based on a Web, CGI, or Service Role running within Windows Azure with a single Instance executing. As long as something is posted to the role, whatever it is, even if not "live" and set to "run" it is still using compute, and thus being charged. The math goes like this. 1x Role (Web, CGI, or Worker) with a single instance set == an hourly charge no matter what it is doing in the cloud. If it is deployed and not running, it still accrues a charge. If a Role has 2x Instances running, then each of those instances is included as compute. So if a Web Role is up and deployed in the cloud (again, running or not) with 2x instances set, then that is effectively 2 hours of compute. | |||
|
feedback
|