Description
So with all the new stuff coming out where the team at Parse is converting their GO version of the Parse server to Node.js I would like to hear from the Parse team on
the best way we can scale horizontally. I havent used Node.js in some time and I know their are some packages to help scale but I would like to get some professional advice
on how this would work, how to deploy code across the server, how to deal with cloud code etc.. is it set up to scale?
Here are some things I have found but not personally used.
- Node.js clustering https://nodejs.org/api/cluster.html
- PM2 - http://pm2.keymetrics.io/
- many others im sure.
The idea is to make sure that each serve can handle x amount of requests and you probably need to have a load balancer/s (for fail over) in front to check the health and send the request to each parse server.
Anyhow I'm curious if anyone has any thoughts on this?