Replication maintains copies of data across multiple servers — for availability (surviving failures), read scaling (serving reads from copies), and geographic distribution. Different strategies (primary-replica, multi-primary, sync vs async) involve trade-offs.
Why replicate
✓ AVAILABILITY/redundancy → if one copy fails, others have the data (no data loss, failover)
✓ READ SCALING → serve reads from replicas (offload the primary) → handle more reads
✓ GEO-DISTRIBUTION → copies near users (lower latency); disaster recovery
→ replication is fundamental to reliable, scalable data systems.
