Hello guys,
I’m designing an application which will allow users to start a long running web socket node process and they will need to be able to manage it (getting status, stoping and starting at will).
In order to make the application scalable I need to distribute these node process executions between multiple servers, and I was thinking of setting up a load balancer to do so.
To give the ability to the user to manage the process at will, I'll need to keep track of each process id (pid), and the machine it's running on. How do I achieve that? Has anyone implemented something like that ?
Thank you