2

Are separate instances of Parse Server independent? IOW, do they coordinate through the MongoDB backend? I suspect so. If so, then I can run multiple systems behind a load balancer and synthesize something with a bit better availability. I can also spin up my web apps and give them their own private Parse Server to query the database.

Can anyone confirm or deny whether a Parse Server is horizontally scalable?

adonoho
  • 123

2 Answers2

1

It is horizontally scalable, we currently run 7-10 instances depending on the load without any issue. you mongodb server should be big enough to accept all those connections

0

One thing to think about as well is using a clustering, throng, pm2 to take advantage if you have more cores for the server your using.

Node.js only runs on one core so if you have beefy servers with multiple cores you should also spawn more parse instances.

Steve
  • 183