Hi @Daniel_Camarena,
You should read “replica set” as “minimum three member replica set” unless otherwise specified. The MongoDB manual does not encourage creating single member replica sets and always describes these as a group of mongod
processes. The design intent of replica set deployments is to achieve all of the benefits I mentioned.
Per Replica Set Members:
The minimum recommended configuration for a replica set is a three member replica set with three data-bearing members: one primary and two secondary members.
There are other suboptimal replica set configurations like adding an arbiter (see Replica set with 3 DB Nodes and 1 Arbiter - #8 by Stennie_X for some caveats) or having less than three members.
A single node replica set does not provide the same benefits as three members, but you can choose this deployment if the caveats are acceptable for your use case.
The difference is a recommended configuration for general production use cases versus a possible configuration for your specific requirements. It sounds like you are fine with a single node replica set.
Regards,
Stennie