HI All, I have a multi-tenant apache server where each tenant has its own wsgi application in its own virtual host. The apache configuration for a tenant roughly looks like: <VirtualHost *:443> ServerName domain-tenant-1 <http://env1.frepple.com/> WSGIDaemonProcess tenant1 user=www-data processes=4 threads=4 inactivity-timeout=7200 request-timeout=3600 display-name=apache-tenant1 WSGIProcessGroup tenant1 WSGIScriptAlias / "/home/ubuntu/config/tenant1/wsgi.py" </VirtualHost>
I am noticing detoriating response times when the number of tenants increases beyond a certain limit - say 150. Neither CPU, database and memory seem to be bottleneck. Are there any apache or mod_wsgi configurations/parameters that can be tuned/optimized for this type of deployment? All feedback & insight is highly appreciated! Johan -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/modwsgi/577e778b-87a5-47dd-9dd3-c7a8d40fdf73n%40googlegroups.com.
