pombreda / appscale

Automatically exported from code.google.com/p/appscale
0 stars 0 forks source link

Run multiple AppServers per node #96

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Currently we only run a single AppServer per node, and since the AppServer
is single-threaded, it quickly becomes the bottleneck during heavy traffic.
Need to either make the AppServer multi-threaded or multi-process.

Fixed. For now, multiple copies of the AppServer are run (default 3,
configurable through --appengine <integer>) and load balanced through nginx.

Internal logic for remove-app has also been changed to accommodate this new
behavior.

Original issue reported on code.google.com by shattere...@gmail.com on 8 Oct 2009 at 8:37