Aurora PostgreSQL Storage Architecture Explained
Aurora PostgreSQL doesn't write pages to disk the way Postgres does. It ships write-ahead log records to a distributed, log-structured storage layer and lets that layer build pages on demand. That one design choice explains almost every "why does this metric look wrong" question that shows up when a Postgres-trained team inherits an Aurora cluster …