Having a MongoDB database called maindatabase
, which has 3 collections of documents named by users, tags and categories, I would like to know if it is possible to separate them on three different servers separately (on different cloud service providers).
I do not mean a replica, but only one collection for the server (one db with only a collection of categories on the server, one with users on another server and one for tags on the third server), can be selectively routed by the mongos router.
Does anyone know if this is possible?
source share