Karthikeyan
Karthikeyan

Reputation: 2724

How do you measure the energy consumption of an EC2 instance ?

I have asked to give a report on the energy consumption of an m5.12xlarge instance. I am wondering how to come up with a factual and approximate number here. Anyone had come across this issue anywhere ?

Upvotes: 4

Views: 2101

Answers (1)

John Rotenstein
John Rotenstein

Reputation: 269340

An important concept of the Cloud is that server utilization is often much higher.

In a normal data center, a server is running 24 hours but is only used a few hours a day, and often not fully utilized in those hours.

In the Cloud, when an instance is not required it can be turned off, which means that the capacity is available for somebody else to use. Instance size can also be selected so that it is big enough for the desired workload, without having to get large servers for a potential future workload.

Thus, there is significantly less wastage in the cloud compared to on-premises servers. I mention this because somebody has presumably asked you to measure the environmental impact of a choice of computing infrastructure, and it's not really accurate to directly compare on-premises vs the Cloud since on-premises is typically over-provisioned and under-utilized.

A good article on this topic: Cloud Computing, Server Utilization, & the Environment | AWS News Blog

Upvotes: 2

Related Questions