Hey there,
I couldn’t find information in the documentation on what happens if I specify multiple mongos instances within the connection string, e.G.:
mongodb://mongos0.example.com:27017,mongos1.example.com:27017,mongos2.example.com:27017
Will all instances of my application connect to the mongos0.example.com instance, or will they randomly pick one, or how is the actual mongos instance being selected?
I am using mongoose which uses the latest mongo@3.6.0 node driver.