Hi all,
was wondering if there is any load balancing between processes when the server was started like
def run_app():
app = make_app()
http_server = tornado.httpserver.HTTPServer(app)
http_server.listen(PORT)
http_server.start(num_processes=0)
tornado.ioloop.IOLoop.current().start()
I do some heavy computation in each of processes... Thereby each process has additionally threads pool for to share memory inside of the process.
Would be interesting how requests are balanced when some of processes are fully busy.
thx,
r