The Anubhav portal was launched in March 2015 at the behest of the Hon'ble Prime Minister for retiring government officials to leave a record of their experiences while in Govt service .
DB Replication (Database Replication) is the process of
copying data from one database to one or more other databases so that all of them stay in sync.
In simple terms: the same data exists in multiple databases.
How DB Replication Works
One database acts as the Primary (Master)
Other databases act as Replicas (Slaves)
Changes (INSERT, UPDATE, DELETE) on the primary are copied to replicas
Why DB Replication Is Used
High availability – database still works if one server fails
Read scaling – read queries can go to replicas
Disaster recovery – backup databases are ready
Performance improvement – reduces load on the main DB
Types of DB Replication
Synchronous – data is written to all replicas immediately
Asynchronous – replicas update after a short delay (most common)
Semi-synchronous – hybrid approach
Example
Writes → Primary DB
Reads → Replica DBs
Used heavily in MySQL, PostgreSQL, SQL Server, MongoDB, and cloud databases.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
the same data exists in multiple databases.
How DB Replication Works
Why DB Replication Is Used
Types of DB Replication
Example
Used heavily in MySQL, PostgreSQL, SQL Server, MongoDB, and cloud databases.
DB Replication vs Sharding
In one line:
DB Replication keeps multiple databases in sync to improve availability, performance, and reliability.