Replication
Copy data to multiple database instances — for redundancy, read load balancing, geographic proximity.
Synchronous (safe, slower) vs asynchronous (fast, risk of data loss). Primary-replica: one writes, many read. Multi-primary: all write — tricky with conflicts. Postgres streaming replication is the classic.