//
Database Replication is the process of copying data from one database server (the Master/Primary) to one or more other database servers (the Slaves/Replicas). This is fundamental for achieving both high availability and improved read performance.
The most common replication architecture. One server is designated as the Master (or Primary), and one or more servers are designated as Slaves (or Replicas).
In this architecture, multiple servers can all accept both reads AND writes. Each master replicates its changes to the other masters.