##// END OF EJS Templates
ini: lower the amount of workers by default
ergo -
r8:1458ded3
parent child Browse files
Show More
@@ -98,7 +98,7 b' appenlight.public_api_key ='
98 98 # celery
99 99 celery.broker_type = redis
100 100 celery.broker_url = redis://localhost:6379/3
101 celery.concurrency = 8
101 celery.concurrency = 2
102 102 celery.timezone = UTC
103 103
104 104 [filter:paste_prefix]
@@ -125,14 +125,14 b' pipeline = paste_prefix'
125 125 [server:main]
126 126 use = egg:gunicorn#main
127 127 host = 0.0.0.0:6543, unix:/tmp/appenlight.sock
128 workers = 6
128 workers = 2
129 129 timeout = 90
130 130 max_requests = 10000
131 131
132 132 [server:api]
133 133 use = egg:gunicorn#main
134 134 host = 0.0.0.0:6553, unix:/tmp/api.appenlight.sock
135 workers = 8
135 workers = 2
136 136 max_requests = 10000
137 137
138 138
General Comments 0
You need to be logged in to leave comments. Login now