-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gunicorn_config.py
55 lines (39 loc) · 1.44 KB
/
gunicorn_config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import os
def on_starting(server):
"""
Attach a set of IDs that can be temporarily re-used.
Used on reloads when each worker exists twice.
"""
server._worker_id_overload = set()
def nworkers_changed(server, new_value, old_value):
"""
Gets called on startup too.
Set the current number of workers. Required if we raise the worker count
temporarily using TTIN because server.cfg.workers won't be updated and if
one of those workers dies, we wouldn't know the ids go that far.
"""
server._worker_id_current_workers = new_value
def _next_worker_id(server):
"""
If there are IDs open for re-use, take one. Else look for a free one.
"""
if server._worker_id_overload:
return server._worker_id_overload.pop()
in_use = {w._worker_id for w in tuple(server.WORKERS.values()) if w.alive}
free = set(range(1, server._worker_id_current_workers + 1)) - in_use
return free.pop()
def on_reload(server):
"""
Add a full set of ids into overload so it can be re-used once.
"""
server._worker_id_overload = set(range(1, server.cfg.workers + 1))
def pre_fork(server, worker):
"""
Attach the next free worker_id before forking off.
"""
worker._worker_id = _next_worker_id(server)
def post_fork(server, worker):
"""
Put the worker_id into an env variable for further use within the app.
"""
os.environ['APP_WORKER_ID'] = str(worker._worker_id)