Skip to content

Cloud Deep Dive — Trivia & Interesting Facts

Surprising, historical, and little-known facts about cloud computing internals.


AWS was born from Amazon's internal infrastructure frustrations

The legend says AWS started as "selling spare capacity," but the real origin is a 2003 internal document by Chris Pinkham and Benjamin Black proposing that Amazon's infrastructure could be offered as a service. Andy Jassy was tasked with building it. SQS launched in 2004, S3 in March 2006, and EC2 in August 2006.


The "cloud" symbol comes from telecommunications, not marketing

Engineers have used a cloud shape to represent networks since the 1970s in telecommunications diagrams. The cloud meant "this part of the network isn't our problem." When Amazon and Google started selling infrastructure, they borrowed the symbol — and the term "cloud computing" followed naturally from decades of network diagrams.


Google's 2008 App Engine was the first modern PaaS — and developers hated the restrictions

Google App Engine, launched in April 2008, was the first major platform-as-a-service. It only supported Python initially, forbade writing to the filesystem, required using Google's proprietary Datastore (no SQL), and limited HTTP requests to 30 seconds. These restrictions frustrated developers but foreshadowed serverless constraints.


Hypervisors run on more computers than any operating system

Every major cloud provider uses hypervisors to partition physical servers into virtual machines. Xen (used by early AWS), KVM (used by Google, modern AWS via Firecracker), and Hyper-V (used by Azure) collectively run on millions of servers worldwide. Combined, hypervisor-managed compute exceeds the total deployment of any single OS.


AWS us-east-1 is in Northern Virginia because of fiber optic routes

AWS's first and largest region is in Northern Virginia because the area has the densest concentration of fiber optic cables in the world, thanks to the internet backbone infrastructure built in the 1990s. The region is near several major internet exchange points and benefits from relatively cheap electricity and land.


Cloud spend crossed $500 billion globally in 2023

According to Synergy Research, worldwide cloud infrastructure spending exceeded $500 billion in 2023, with AWS holding approximately 31%, Azure 25%, and Google Cloud 11% market share. This makes cloud computing larger than many national economies and still growing at 20%+ annually.


Live migration of VMs was a breakthrough that users never see

Cloud providers can move running virtual machines between physical hosts without any downtime — a technique called live migration. Google first deployed this at scale around 2013 for maintenance operations. Users' VMs are migrated transparently while they're running, and the entire process takes less than a second of pause time.


Multi-tenancy isolation failures have been demonstrated but rarely exploited

Researchers have demonstrated cross-VM attacks on shared cloud hardware, including cache-based side-channel attacks (like Spectre and Meltdown) that could theoretically extract data from co-located VMs. Despite this, no major real-world cross-tenant data breach via hypervisor escape has been publicly confirmed in any major cloud provider.


Cloud regions are not single buildings

A common misconception is that a "cloud region" is a single datacenter. In reality, a region contains multiple Availability Zones, each of which may comprise multiple physical buildings separated by kilometers. AWS's us-east-1 region spans at least 6 AZs across multiple datacenter campuses in Northern Virginia.


The cloud runs on surprisingly old hardware

Cloud providers don't replace servers every year. The typical hardware refresh cycle is 4-6 years, and some non-critical workloads run on even older equipment. AWS's Graviton processor initiative was partly motivated by wanting to control the refresh cycle and reduce dependence on Intel's release schedule.


Egress fees are cloud computing's most controversial pricing model

Ingress (uploading data to the cloud) is free, but egress (downloading data from the cloud) costs $0.05-0.12/GB. Critics call this "data gravity" pricing — once your data is in the cloud, the cost to move it out creates lock-in. The European Commission investigated egress pricing as a potential anti-competitive practice in 2023.