From 773ac1feefbb365972f9e340f49cfb9532c496cc Mon Sep 17 00:00:00 2001 From: zeus Date: Sun, 21 Mar 2021 20:52:57 +0200 Subject: [PATCH] HowTo --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 89b8778..bc13b68 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,15 @@ # storage-mongo-replica +A replica set in MongoDB is a group of mongod processes that maintain the same data set. Replica sets provide redundancy and high availability, and are the basis for all production deployments. + +This section introduces replication in MongoDB as well as the components and architecture of replica sets. The section also provides tutorials for common tasks related to replica sets. + + +##Replication in MongoDB + +A replica set is a group of mongod instances that maintain the same data set. A replica set contains several data bearing nodes and optionally one arbiter node. Of the data bearing nodes, one and only one member is deemed the primary node, while the other nodes are deemed secondary nodes. + +https://docs.mongodb.com/manual/replication/ ## Quickstart