8. Measurement & Optimization

Focus on step-by-step optimizations that increase the overall carbon efficiency

Sustainability isn't one optimization, it's thousands. One piece of advice is to look end-to-end and take it step by step. Often putting in the effort to understand the full stack, from user experience to data center design or electricity grids yield simple solutions that significantly improve carbon efficiency.

Weigh up the effort required to decarbonize vs. the potential rewards. Just like the broader global sustainability movement, some sectors will be harder to decarbonize than others. In computing, some application domains will be harder to decarbonize than others. Some parts of your application architecture will be harder to decarbonize than others.

The key to success in optimization is to choose a measurement criterion that will give clear signals as to where best to put optimization efforts. For example, is it worthwhile to spend two weeks reducing megabytes from network communication if the database queries cause 10 times more carbon to be emitted?

Rarely, can we directly measure our application's carbon cost, but if we follow a resource chain down and it eventually has a link to carbon emissions, then that is a good proxy for carbon.

Carbon permalink

Measuring emitted carbon is a complex challenge, with parts of the stack that need to be estimated rather than measured, but with some effort, it’s possible.

Because of the variability of carbon intensity and other dependencies, the total carbon emitted may change depending on the time of day or region the application is run.

The same application measured at different times will result in different amounts of carbon. This could be a good signal, especially if you are open to demand-shifting workloads or it could be noise if you are focussing on energy optimizations.

Energy permalink

The energy consumed by your application may vary every time it runs, this may be something you want to take as an optimization signal, or this may be something you want to control for.

The same application run on different hardware may result in different amounts of energy consumed because of the differences in energy efficiency between the hardware components.

Because of the energy proportionality principle, the same application run on the same hardware but at different times may result in different amounts of energy consumed because the utilization of the hardware is different between the two runs. That is, the hardware might be running other applications during the second run, and this changes the hardware’s overall energy efficiency.

Overall, though, creating applications that consume less electricity for the same human-perceptible performance and output is a good proxy for carbon reduction.

There are devices, tools and libraries available that help you measure the energy consumed by an application.

  • Joulemeter (depreciated) Estimates the power consumption globally from the CPU, memory and disk however for a single application only stores the energy from the CPU.
  • PowerAPI A system monitoring library only works for GNU/Linux and only calculates CPU energy, it does, however, calculate the energy used per process.
  • Intel Power Gadget Only works on Intel Core processors, only calculates power consumption due to the CPU and does not break this out on a per-process basis.

  • PowerCFG A Windows 10 tool allowing to have the electrical consumption per process.

A thorough analysis of the various software and hardware tools to measure energy consumption can be found in the paper Software development methodology in a Green IT environment.

Cost permalink

At some point, the cost of electricity is factored into most services. Building applications that run as cheaply as possible is usually a good proxy for applications that emit less carbon.

Networking permalink

The cost of electricity in networking is often not considered. The number of services that offer unlimited bandwidth for a single price means there is little price pressure to reduce bandwidth.

Measuring and then reducing the amount and distance your data must travel is a good proxy for reducing carbon.

Performance permalink

If you can architect an application that performs better for the same level of utilization, then this is likely to reduce overall carbon.


All Principles permalink

  1. Carbon   Build applications that are carbon efficient
  2. Electricity   Build applications that are energy efficient
  3. Intensidad de carbono   Consuma electricidad con la mínima intensidad de carbono
  4. Carbon Intensity   Consume electricity with the lowest carbon intensity
  5. Embodied Carbon   Build applications that are hardware efficient
  6. Energy Proportionality   Maximize the energy efficiency of hardware
  7. Networking   Reduce the amount of data and distance it must travel across the network
  8. Moldeo de la demanda   Crear aplicaciones que sean conscientes del carbono que emiten.
  9. Demand Shaping   Build carbon-aware applications.
  10. Measurement & Optimization   ▶ Focus on step-by-step optimizations that increase the overall carbon efficiency ◀