jargon

Backend & systems·Consistency and replication

you point the reporting queries at a copy of the database so they stop competing with checkout traffic.

Read replica

A follower serving read-only queries to offload the primary. It is the first and cheapest scaling move for a read-heavy workload. Everything read from it is stale by the replication lag, and a heavy analytical query on a replica can itself increase that lag for everyone else using it.

Commonly confused with