Is it possible to balance the load on the meteor?

Is it possible to run multiple instances of a meteor application using Mongodb behind a load balancer?

It seems that if multiple instances of the application are running on different servers, they will not be aware of the changes to Mongo DB made by other instances, and therefore not inform the clients.

+5
source share
2 answers

A meteor can tell when a database is modified by another meteor instance, albeit with a slight delay (I noticed a maximum of 5 seconds).

Load balancing does not have to be complicated; it is certainly possible.

You can easily use multiple instances of the meteor and load balancer in the traditional sense.

+3
source

This is possible with the Meteor Cluster.

+2

All Articles