From 83eae398dbe3d8229a315982da0ecb33023d6fdf Mon Sep 17 00:00:00 2001 From: zeus Date: Sun, 21 Mar 2021 20:54:25 +0200 Subject: [PATCH] HowTo --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bc13b68..52d65d4 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,12 @@ 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. +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. +More here: https://docs.mongodb.com/manual/replication/ ## Quickstart