IT and sustainability,

Skip to content

This here’s a machine-translated text that might contain errors!

The IT industry uses a heap of electricity. Data centers, servers, networkin’ gear, PCs, cell phones, charg’n ‘em, keepin’ ‘em cool. All o’ that takes energy, and all that equipment has a limited lifespan. When we make choices ‘bout infrastructure, we’re also makin’ choices that affect the environment.

How Big’s the Problem, Really?

Some numbers to chew on:

  • Data centers ‘round the world use ‘bout 1-2% of the whole world’s power
  • The whole IT business has a carbon footprint the size of the flyin’ industry
  • A single Google search uses ‘bout 0.3 Wh. Sounds small, but with billions of searches a day, it adds up quick.
  • Trainin’ big AI models can use as much power as a small Norwegian house uses in a whole year.

Norge er i en gunstig posisjon

Most of the power in Norway comes from hydropower, makin’ Norwegian data centers some of the greenest in the world. That’s one of the reasons international companies are buildin’ data centers in the Nordic region.

E-Waste

E-waste (electronic waste) is a growin’ problem, partner. Servers, PCs, cell phones, and network gear hold rare metals and poisonous stuff that needs handlin’ right.

Problem Consequence
Short lifespan of equipment More waste, more makin’, more usin’ up resources
Poisonous materials Lead, mercury, and cadmium can pollute land and water
Rare metals Diggin’ it up harms the environment and often happens under poor workin’ conditions
Lack of recyclin’ Only ‘bout 20% of e-waste gets recycled globally

What Can You Do as an IT Operator?

You don’t need to save the world all by your lonesome, but the choices you make in yer day-to-day work actually have an effect.

Virtualizin’ and Consolidation

Instead of havin’ a physical machine for each service, we use virtualizin’. One server with Proxmox can run 10-20 VMs or hundreds of Docker containers. That means fewer physical machines, less power consumption, and less coolin’ needed.

Example:

Without Virtualizin’ With Virtualizin’
5 physical servers 1 physical server
5 × power consumption 1 × power consumption (+ a little more)
5 × coolin’ 1 × coolin’
5 × maintenance 1 × maintenance

Sizin’ It Right

A server that’s over-provisioned (too much RAM, CPU, disk) uses more power than it oughta. A VM with 16 GB of RAM that’s only usin’ 2 GB is just wastin’ resources. Start small and scale up when ya need to.

Extendin’ the Life o’ Yer Gear

Don’t go replacin’ hardware just ‘cause somethin’ newer’s come along. A server that’s workin’ just fine don’t need replacin’ every three years. Upgrade the RAM or disk instead o’ buyin’ a whole new machine. Get rid o’ and recycle what ya don’t actually need.

Shut Down What You Ain’t Usin’

Test VMs runnin’ 24/7 without a good reason are just wastin’ electricity. Use snapshots and shut down VMs when they ain’t bein’ used. Set up automatic shutdown of test gear outside of workin’ hours.

Cloud Services and On-Demand

Cloud services have the advantage that ya only pay (and use electricity) for what ya actually use. A VM in Azure runnin’ 8 hours a day uses less than one runnin’ 24/7. But be warned: cloud resources ya forget to delete also use electricity.

Software and Resource Usage

It ain’t just the hardware that affects power consumption, partner. Inefficient software uses more CPU time, which means more juice.

  • A webpage that loads 20 MB of JavaScript uses more bandwidth and processing power than one that’s optimized to 500 KB
  • A poorly written SQL query that scans the whole database uses more resources than one that’s indexed right
  • A container runnin’ a whole Linux distro for one little service uses more than one based on a minimal base image (like Alpine)

This here’s a place where Operations and Development overlap: the developer writes efficient code, and the operator makes sure it runs on properly sized infrastructure.

Summin’ It Up

  • The tech world uses a heap o’ energy and makes a whole lotta e-waste.
  • Virtualizin’ cuts down on the number o’ physical machines, savin’ on power and coolin’.
  • Sizin’ things right keeps ya from wastin’ resources.
  • Keep yer hardware goin’ instead o’ replacin’ it when it ain’t needed.
  • Turn off what ya ain’t usin’, and tidy up yer cloud resources.
  • Good software uses fewer resources than software that’s all busted up.