Show More
@@ -1,517 +1,520 b'' | |||||
1 | """ |
|
1 | """ | |
2 | Gunicorn config extension and hooks. This config file adds some extra settings and memory management. |
|
2 | Gunicorn config extension and hooks. This config file adds some extra settings and memory management. | |
3 | Gunicorn configuration should be managed by .ini files entries of RhodeCode or VCSServer |
|
3 | Gunicorn configuration should be managed by .ini files entries of RhodeCode or VCSServer | |
4 | """ |
|
4 | """ | |
5 |
|
5 | |||
6 | import contextlib |
|
|||
7 | import dataclasses |
|
|||
8 | import gc |
|
6 | import gc | |
|
7 | import os | |||
|
8 | import sys | |||
9 | import math |
|
9 | import math | |
10 |
import |
|
10 | import time | |
|
11 | import threading | |||
|
12 | import traceback | |||
11 | import random |
|
13 | import random | |
12 | import socket |
|
14 | import socket | |
13 |
import |
|
15 | import dataclasses | |
14 | import threading |
|
|||
15 | import time |
|
|||
16 | import traceback |
|
|||
17 |
|
||||
18 | from gunicorn.glogging import Logger |
|
16 | from gunicorn.glogging import Logger | |
19 |
|
17 | |||
20 |
|
18 | |||
21 | def get_workers(): |
|
19 | def get_workers(): | |
22 | import multiprocessing |
|
20 | import multiprocessing | |
23 |
|
||||
24 | return multiprocessing.cpu_count() * 2 + 1 |
|
21 | return multiprocessing.cpu_count() * 2 + 1 | |
25 |
|
22 | |||
26 |
|
23 | |||
27 | bind = "127.0.0.1:10010" |
|
24 | bind = "127.0.0.1:10010" | |
28 |
|
25 | |||
29 |
|
26 | |||
30 | # Error logging output for gunicorn (-) is stdout |
|
27 | # Error logging output for gunicorn (-) is stdout | |
31 |
errorlog = |
|
28 | errorlog = '-' | |
32 |
|
29 | |||
33 | # Access logging output for gunicorn (-) is stdout |
|
30 | # Access logging output for gunicorn (-) is stdout | |
34 |
accesslog = |
|
31 | accesslog = '-' | |
35 |
|
32 | |||
36 |
|
33 | |||
37 | # SERVER MECHANICS |
|
34 | # SERVER MECHANICS | |
38 | # None == system temp dir |
|
35 | # None == system temp dir | |
39 | # worker_tmp_dir is recommended to be set to some tmpfs |
|
36 | # worker_tmp_dir is recommended to be set to some tmpfs | |
40 | worker_tmp_dir = None |
|
37 | worker_tmp_dir = None | |
41 | tmp_upload_dir = None |
|
38 | tmp_upload_dir = None | |
42 |
|
39 | |||
43 | # use re-use port logic |
|
40 | # use re-use port logic | |
44 |
# |
|
41 | #reuse_port = True | |
45 |
|
42 | |||
46 | # Custom log format |
|
43 | # Custom log format | |
47 |
# |
|
44 | #access_log_format = ( | |
48 | # '%(t)s %(p)s INFO [GNCRN] %(h)-15s rqt:%(L)s %(s)s %(b)-6s "%(m)s:%(U)s %(q)s" usr:%(u)s "%(f)s" "%(a)s"') |
|
45 | # '%(t)s %(p)s INFO [GNCRN] %(h)-15s rqt:%(L)s %(s)s %(b)-6s "%(m)s:%(U)s %(q)s" usr:%(u)s "%(f)s" "%(a)s"') | |
49 |
|
46 | |||
50 | # loki format for easier parsing in grafana |
|
47 | # loki format for easier parsing in grafana | |
51 | access_log_format = 'time="%(t)s" pid=%(p)s level="INFO" type="[GNCRN]" ip="%(h)-15s" rqt="%(L)s" response_code="%(s)s" response_bytes="%(b)-6s" uri="%(m)s:%(U)s %(q)s" user=":%(u)s" user_agent="%(a)s"' |
|
48 | access_log_format = ( | |
52 |
|
49 | 'time="%(t)s" pid=%(p)s level="INFO" type="[GNCRN]" ip="%(h)-15s" rqt="%(L)s" response_code="%(s)s" response_bytes="%(b)-6s" uri="%(m)s:%(U)s %(q)s" user=":%(u)s" user_agent="%(a)s"') | ||
53 |
|
||||
54 | # Sets the number of process workers. More workers means more concurrent connections |
|
|||
55 | # RhodeCode can handle at the same time. Each additional worker also it increases |
|
|||
56 | # memory usage as each has it's own set of caches. |
|
|||
57 | # Recommended value is (2 * NUMBER_OF_CPUS + 1), eg 2CPU = 5 workers, but no more |
|
|||
58 | # than 8-10 unless for huge deployments .e.g 700-1000 users. |
|
|||
59 | # `instance_id = *` must be set in the [app:main] section below (which is the default) |
|
|||
60 | # when using more than 1 worker. |
|
|||
61 | workers = 6 |
|
|||
62 |
|
50 | |||
63 | # self adjust workers based on CPU count, to use maximum of CPU and not overquota the resources |
|
51 | # self adjust workers based on CPU count, to use maximum of CPU and not overquota the resources | |
64 | # workers = get_workers() |
|
52 | # workers = get_workers() | |
65 |
|
53 | |||
66 | # Gunicorn access log level |
|
54 | # Gunicorn access log level | |
67 |
loglevel = |
|
55 | loglevel = 'info' | |
68 |
|
56 | |||
69 | # Process name visible in a process list |
|
57 | # Process name visible in a process list | |
70 | proc_name = "rhodecode_vcsserver" |
|
58 | proc_name = "rhodecode_vcsserver" | |
71 |
|
59 | |||
72 | # Type of worker class, one of `sync`, `gevent` |
|
60 | # Type of worker class, one of `sync`, `gevent` or `gthread` | |
73 |
# currently `sync` is the only option allowed |
|
61 | # currently `sync` is the only option allowed for vcsserver and for rhodecode all of 3 are allowed | |
74 | worker_class = "sync" |
|
62 | # gevent: | |
|
63 | # In this case, the maximum number of concurrent requests is (N workers * X worker_connections) | |||
|
64 | # e.g. workers =3 worker_connections=10 = 3*10, 30 concurrent requests can be handled | |||
|
65 | # gthread: | |||
|
66 | # In this case, the maximum number of concurrent requests is (N workers * X threads) | |||
|
67 | # e.g. workers = 3 threads=3 = 3*3, 9 concurrent requests can be handled | |||
|
68 | worker_class = 'sync' | |||
|
69 | ||||
|
70 | # Sets the number of process workers. More workers means more concurrent connections | |||
|
71 | # RhodeCode can handle at the same time. Each additional worker also it increases | |||
|
72 | # memory usage as each has its own set of caches. | |||
|
73 | # The Recommended value is (2 * NUMBER_OF_CPUS + 1), eg 2CPU = 5 workers, but no more | |||
|
74 | # than 8-10 unless for huge deployments .e.g 700-1000 users. | |||
|
75 | # `instance_id = *` must be set in the [app:main] section below (which is the default) | |||
|
76 | # when using more than 1 worker. | |||
|
77 | workers = 2 | |||
|
78 | ||||
|
79 | # Threads numbers for worker class gthread | |||
|
80 | threads = 1 | |||
75 |
|
81 | |||
76 | # The maximum number of simultaneous clients. Valid only for gevent |
|
82 | # The maximum number of simultaneous clients. Valid only for gevent | |
|
83 | # In this case, the maximum number of concurrent requests is (N workers * X worker_connections) | |||
|
84 | # e.g workers =3 worker_connections=10 = 3*10, 30 concurrent requests can be handled | |||
77 | worker_connections = 10 |
|
85 | worker_connections = 10 | |
78 |
|
86 | |||
79 | # Max number of requests that worker will handle before being gracefully restarted. |
|
87 | # Max number of requests that worker will handle before being gracefully restarted. | |
80 | # Prevents memory leaks, jitter adds variability so not all workers are restarted at once. |
|
88 | # Prevents memory leaks, jitter adds variability so not all workers are restarted at once. | |
81 | max_requests = 2000 |
|
89 | max_requests = 2000 | |
82 | max_requests_jitter = int(max_requests * 0.2) # 20% of max_requests |
|
90 | max_requests_jitter = int(max_requests * 0.2) # 20% of max_requests | |
83 |
|
91 | |||
84 | # The maximum number of pending connections. |
|
92 | # The maximum number of pending connections. | |
85 | # Exceeding this number results in the client getting an error when attempting to connect. |
|
93 | # Exceeding this number results in the client getting an error when attempting to connect. | |
86 | backlog = 64 |
|
94 | backlog = 64 | |
87 |
|
95 | |||
88 | # The Amount of time a worker can spend with handling a request before it |
|
96 | # The Amount of time a worker can spend with handling a request before it | |
89 | # gets killed and restarted. By default, set to 21600 (6hrs) |
|
97 | # gets killed and restarted. By default, set to 21600 (6hrs) | |
90 | # Examples: 1800 (30min), 3600 (1hr), 7200 (2hr), 43200 (12h) |
|
98 | # Examples: 1800 (30min), 3600 (1hr), 7200 (2hr), 43200 (12h) | |
91 | timeout = 21600 |
|
99 | timeout = 21600 | |
92 |
|
100 | |||
93 | # The maximum size of HTTP request line in bytes. |
|
101 | # The maximum size of HTTP request line in bytes. | |
94 | # 0 for unlimited |
|
102 | # 0 for unlimited | |
95 | limit_request_line = 0 |
|
103 | limit_request_line = 0 | |
96 |
|
104 | |||
97 | # Limit the number of HTTP headers fields in a request. |
|
105 | # Limit the number of HTTP headers fields in a request. | |
98 | # By default this value is 100 and can't be larger than 32768. |
|
106 | # By default this value is 100 and can't be larger than 32768. | |
99 | limit_request_fields = 32768 |
|
107 | limit_request_fields = 32768 | |
100 |
|
108 | |||
101 | # Limit the allowed size of an HTTP request header field. |
|
109 | # Limit the allowed size of an HTTP request header field. | |
102 | # Value is a positive number or 0. |
|
110 | # Value is a positive number or 0. | |
103 | # Setting it to 0 will allow unlimited header field sizes. |
|
111 | # Setting it to 0 will allow unlimited header field sizes. | |
104 | limit_request_field_size = 0 |
|
112 | limit_request_field_size = 0 | |
105 |
|
113 | |||
106 | # Timeout for graceful workers restart. |
|
114 | # Timeout for graceful workers restart. | |
107 | # After receiving a restart signal, workers have this much time to finish |
|
115 | # After receiving a restart signal, workers have this much time to finish | |
108 | # serving requests. Workers still alive after the timeout (starting from the |
|
116 | # serving requests. Workers still alive after the timeout (starting from the | |
109 | # receipt of the restart signal) are force killed. |
|
117 | # receipt of the restart signal) are force killed. | |
110 | # Examples: 1800 (30min), 3600 (1hr), 7200 (2hr), 43200 (12h) |
|
118 | # Examples: 1800 (30min), 3600 (1hr), 7200 (2hr), 43200 (12h) | |
111 | graceful_timeout = 21600 |
|
119 | graceful_timeout = 21600 | |
112 |
|
120 | |||
113 | # The number of seconds to wait for requests on a Keep-Alive connection. |
|
121 | # The number of seconds to wait for requests on a Keep-Alive connection. | |
114 | # Generally set in the 1-5 seconds range. |
|
122 | # Generally set in the 1-5 seconds range. | |
115 | keepalive = 2 |
|
123 | keepalive = 2 | |
116 |
|
124 | |||
117 | # Maximum memory usage that each worker can use before it will receive a |
|
125 | # Maximum memory usage that each worker can use before it will receive a | |
118 | # graceful restart signal 0 = memory monitoring is disabled |
|
126 | # graceful restart signal 0 = memory monitoring is disabled | |
119 | # Examples: 268435456 (256MB), 536870912 (512MB) |
|
127 | # Examples: 268435456 (256MB), 536870912 (512MB) | |
120 | # 1073741824 (1GB), 2147483648 (2GB), 4294967296 (4GB) |
|
128 | # 1073741824 (1GB), 2147483648 (2GB), 4294967296 (4GB) | |
121 | # Dynamic formula 1024 * 1024 * 256 == 256MBs |
|
129 | # Dynamic formula 1024 * 1024 * 256 == 256MBs | |
122 | memory_max_usage = 0 |
|
130 | memory_max_usage = 0 | |
123 |
|
131 | |||
124 | # How often in seconds to check for memory usage for each gunicorn worker |
|
132 | # How often in seconds to check for memory usage for each gunicorn worker | |
125 | memory_usage_check_interval = 60 |
|
133 | memory_usage_check_interval = 60 | |
126 |
|
134 | |||
127 | # Threshold value for which we don't recycle worker if GarbageCollection |
|
135 | # Threshold value for which we don't recycle worker if GarbageCollection | |
128 | # frees up enough resources. Before each restart, we try to run GC on worker |
|
136 | # frees up enough resources. Before each restart, we try to run GC on worker | |
129 | # in case we get enough free memory after that; restart will not happen. |
|
137 | # in case we get enough free memory after that; restart will not happen. | |
130 | memory_usage_recovery_threshold = 0.8 |
|
138 | memory_usage_recovery_threshold = 0.8 | |
131 |
|
139 | |||
132 |
|
140 | |||
133 | @dataclasses.dataclass |
|
141 | @dataclasses.dataclass | |
134 | class MemoryCheckConfig: |
|
142 | class MemoryCheckConfig: | |
135 | max_usage: int |
|
143 | max_usage: int | |
136 | check_interval: int |
|
144 | check_interval: int | |
137 | recovery_threshold: float |
|
145 | recovery_threshold: float | |
138 |
|
146 | |||
139 |
|
147 | |||
140 | def _get_process_rss(pid=None): |
|
148 | def _get_process_rss(pid=None): | |
141 | with contextlib.suppress(Exception): |
|
149 | try: | |
142 | import psutil |
|
150 | import psutil | |
143 |
|
||||
144 | if pid: |
|
151 | if pid: | |
145 | proc = psutil.Process(pid) |
|
152 | proc = psutil.Process(pid) | |
146 | else: |
|
153 | else: | |
147 | proc = psutil.Process() |
|
154 | proc = psutil.Process() | |
148 | return proc.memory_info().rss |
|
155 | return proc.memory_info().rss | |
149 |
|
156 | except Exception: | ||
150 | return None |
|
157 | return None | |
151 |
|
158 | |||
152 |
|
159 | |||
153 | def _get_config(ini_path): |
|
160 | def _get_config(ini_path): | |
154 | import configparser |
|
161 | import configparser | |
155 |
|
162 | |||
156 | with contextlib.suppress(Exception): |
|
163 | try: | |
157 | config = configparser.RawConfigParser() |
|
164 | config = configparser.RawConfigParser() | |
158 | config.read(ini_path) |
|
165 | config.read(ini_path) | |
159 | return config |
|
166 | return config | |
160 |
|
167 | except Exception: | ||
161 | return None |
|
168 | return None | |
162 |
|
169 | |||
163 |
|
170 | |||
164 | def get_memory_usage_params(config=None): |
|
171 | def get_memory_usage_params(config=None): | |
165 | # memory spec defaults |
|
172 | # memory spec defaults | |
166 | _memory_max_usage = memory_max_usage |
|
173 | _memory_max_usage = memory_max_usage | |
167 | _memory_usage_check_interval = memory_usage_check_interval |
|
174 | _memory_usage_check_interval = memory_usage_check_interval | |
168 | _memory_usage_recovery_threshold = memory_usage_recovery_threshold |
|
175 | _memory_usage_recovery_threshold = memory_usage_recovery_threshold | |
169 |
|
176 | |||
170 | if config: |
|
177 | if config: | |
171 | ini_path = os.path.abspath(config) |
|
178 | ini_path = os.path.abspath(config) | |
172 | conf = _get_config(ini_path) |
|
179 | conf = _get_config(ini_path) | |
173 |
|
180 | |||
174 |
section = |
|
181 | section = 'server:main' | |
175 | if conf and conf.has_section(section): |
|
182 | if conf and conf.has_section(section): | |
176 | if conf.has_option(section, "memory_max_usage"): |
|
|||
177 | _memory_max_usage = conf.getint(section, "memory_max_usage") |
|
|||
178 |
|
183 | |||
179 |
if conf.has_option(section, |
|
184 | if conf.has_option(section, 'memory_max_usage'): | |
180 |
_memory_usage |
|
185 | _memory_max_usage = conf.getint(section, 'memory_max_usage') | |
|
186 | ||||
|
187 | if conf.has_option(section, 'memory_usage_check_interval'): | |||
|
188 | _memory_usage_check_interval = conf.getint(section, 'memory_usage_check_interval') | |||
181 |
|
189 | |||
182 |
if conf.has_option(section, |
|
190 | if conf.has_option(section, 'memory_usage_recovery_threshold'): | |
183 |
_memory_usage_recovery_threshold = conf.getfloat(section, |
|
191 | _memory_usage_recovery_threshold = conf.getfloat(section, 'memory_usage_recovery_threshold') | |
184 |
|
192 | |||
185 |
_memory_max_usage = int(os.environ.get( |
|
193 | _memory_max_usage = int(os.environ.get('RC_GUNICORN_MEMORY_MAX_USAGE', '') | |
186 | _memory_usage_check_interval = int( |
|
194 | or _memory_max_usage) | |
187 |
|
|
195 | _memory_usage_check_interval = int(os.environ.get('RC_GUNICORN_MEMORY_USAGE_CHECK_INTERVAL', '') | |
188 | ) |
|
196 | or _memory_usage_check_interval) | |
189 | _memory_usage_recovery_threshold = float( |
|
197 | _memory_usage_recovery_threshold = float(os.environ.get('RC_GUNICORN_MEMORY_USAGE_RECOVERY_THRESHOLD', '') | |
190 | os.environ.get("RC_GUNICORN_MEMORY_USAGE_RECOVERY_THRESHOLD", "") or _memory_usage_recovery_threshold |
|
198 | or _memory_usage_recovery_threshold) | |
191 | ) |
|
|||
192 |
|
199 | |||
193 | return MemoryCheckConfig(_memory_max_usage, _memory_usage_check_interval, _memory_usage_recovery_threshold) |
|
200 | return MemoryCheckConfig(_memory_max_usage, _memory_usage_check_interval, _memory_usage_recovery_threshold) | |
194 |
|
201 | |||
195 |
|
202 | |||
196 | def _time_with_offset(check_interval): |
|
203 | def _time_with_offset(check_interval): | |
197 |
return time.time() - random.randint(0, check_interval |
|
204 | return time.time() - random.randint(0, check_interval/2.0) | |
198 |
|
205 | |||
199 |
|
206 | |||
200 | def pre_fork(server, worker): |
|
207 | def pre_fork(server, worker): | |
201 | pass |
|
208 | pass | |
202 |
|
209 | |||
203 |
|
210 | |||
204 | def post_fork(server, worker): |
|
211 | def post_fork(server, worker): | |
|
212 | ||||
205 | memory_conf = get_memory_usage_params() |
|
213 | memory_conf = get_memory_usage_params() | |
206 | _memory_max_usage = memory_conf.max_usage |
|
214 | _memory_max_usage = memory_conf.max_usage | |
207 | _memory_usage_check_interval = memory_conf.check_interval |
|
215 | _memory_usage_check_interval = memory_conf.check_interval | |
208 | _memory_usage_recovery_threshold = memory_conf.recovery_threshold |
|
216 | _memory_usage_recovery_threshold = memory_conf.recovery_threshold | |
209 |
|
217 | |||
210 |
worker._memory_max_usage = int(os.environ.get( |
|
218 | worker._memory_max_usage = int(os.environ.get('RC_GUNICORN_MEMORY_MAX_USAGE', '') | |
211 | worker._memory_usage_check_interval = int( |
|
219 | or _memory_max_usage) | |
212 |
|
|
220 | worker._memory_usage_check_interval = int(os.environ.get('RC_GUNICORN_MEMORY_USAGE_CHECK_INTERVAL', '') | |
213 | ) |
|
221 | or _memory_usage_check_interval) | |
214 | worker._memory_usage_recovery_threshold = float( |
|
222 | worker._memory_usage_recovery_threshold = float(os.environ.get('RC_GUNICORN_MEMORY_USAGE_RECOVERY_THRESHOLD', '') | |
215 | os.environ.get("RC_GUNICORN_MEMORY_USAGE_RECOVERY_THRESHOLD", "") or _memory_usage_recovery_threshold |
|
223 | or _memory_usage_recovery_threshold) | |
216 | ) |
|
|||
217 |
|
224 | |||
218 | # register memory last check time, with some random offset so we don't recycle all |
|
225 | # register memory last check time, with some random offset so we don't recycle all | |
219 | # at once |
|
226 | # at once | |
220 | worker._last_memory_check_time = _time_with_offset(_memory_usage_check_interval) |
|
227 | worker._last_memory_check_time = _time_with_offset(_memory_usage_check_interval) | |
221 |
|
228 | |||
222 | if _memory_max_usage: |
|
229 | if _memory_max_usage: | |
223 | server.log.info( |
|
230 | server.log.info("pid=[%-10s] WORKER spawned with max memory set at %s", worker.pid, | |
224 |
|
|
231 | _format_data_size(_memory_max_usage)) | |
225 | ) |
|
|||
226 | else: |
|
232 | else: | |
227 | server.log.info("pid=[%-10s] WORKER spawned", worker.pid) |
|
233 | server.log.info("pid=[%-10s] WORKER spawned", worker.pid) | |
228 |
|
234 | |||
229 |
|
235 | |||
230 | def pre_exec(server): |
|
236 | def pre_exec(server): | |
231 | server.log.info("Forked child, re-executing.") |
|
237 | server.log.info("Forked child, re-executing.") | |
232 |
|
238 | |||
233 |
|
239 | |||
234 | def on_starting(server): |
|
240 | def on_starting(server): | |
235 |
server_lbl = |
|
241 | server_lbl = '{} {}'.format(server.proc_name, server.address) | |
236 | server.log.info("Server %s is starting.", server_lbl) |
|
242 | server.log.info("Server %s is starting.", server_lbl) | |
237 |
server.log.info( |
|
243 | server.log.info('Config:') | |
238 | server.log.info(f"\n{server.cfg}") |
|
244 | server.log.info(f"\n{server.cfg}") | |
239 | server.log.info(get_memory_usage_params()) |
|
245 | server.log.info(get_memory_usage_params()) | |
240 |
|
246 | |||
241 |
|
247 | |||
242 | def when_ready(server): |
|
248 | def when_ready(server): | |
243 | server.log.info("Server %s is ready. Spawning workers", server) |
|
249 | server.log.info("Server %s is ready. Spawning workers", server) | |
244 |
|
250 | |||
245 |
|
251 | |||
246 | def on_reload(server): |
|
252 | def on_reload(server): | |
247 | pass |
|
253 | pass | |
248 |
|
254 | |||
249 |
|
255 | |||
250 | def _format_data_size(size, unit="B", precision=1, binary=True): |
|
256 | def _format_data_size(size, unit="B", precision=1, binary=True): | |
251 | """Format a number using SI units (kilo, mega, etc.). |
|
257 | """Format a number using SI units (kilo, mega, etc.). | |
252 |
|
258 | |||
253 | ``size``: The number as a float or int. |
|
259 | ``size``: The number as a float or int. | |
254 |
|
260 | |||
255 | ``unit``: The unit name in plural form. Examples: "bytes", "B". |
|
261 | ``unit``: The unit name in plural form. Examples: "bytes", "B". | |
256 |
|
262 | |||
257 | ``precision``: How many digits to the right of the decimal point. Default |
|
263 | ``precision``: How many digits to the right of the decimal point. Default | |
258 | is 1. 0 suppresses the decimal point. |
|
264 | is 1. 0 suppresses the decimal point. | |
259 |
|
265 | |||
260 | ``binary``: If false, use base-10 decimal prefixes (kilo = K = 1000). |
|
266 | ``binary``: If false, use base-10 decimal prefixes (kilo = K = 1000). | |
261 | If true, use base-2 binary prefixes (kibi = Ki = 1024). |
|
267 | If true, use base-2 binary prefixes (kibi = Ki = 1024). | |
262 |
|
268 | |||
263 | ``full_name``: If false (default), use the prefix abbreviation ("k" or |
|
269 | ``full_name``: If false (default), use the prefix abbreviation ("k" or | |
264 | "Ki"). If true, use the full prefix ("kilo" or "kibi"). If false, |
|
270 | "Ki"). If true, use the full prefix ("kilo" or "kibi"). If false, | |
265 | use abbreviation ("k" or "Ki"). |
|
271 | use abbreviation ("k" or "Ki"). | |
266 |
|
272 | |||
267 | """ |
|
273 | """ | |
268 |
|
274 | |||
269 | if not binary: |
|
275 | if not binary: | |
270 | base = 1000 |
|
276 | base = 1000 | |
271 |
multiples = ( |
|
277 | multiples = ('', 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y') | |
272 | else: |
|
278 | else: | |
273 | base = 1024 |
|
279 | base = 1024 | |
274 |
multiples = ( |
|
280 | multiples = ('', 'Ki', 'Mi', 'Gi', 'Ti', 'Pi', 'Ei', 'Zi', 'Yi') | |
275 |
|
281 | |||
276 | sign = "" |
|
282 | sign = "" | |
277 | if size > 0: |
|
283 | if size > 0: | |
278 | m = int(math.log(size, base)) |
|
284 | m = int(math.log(size, base)) | |
279 | elif size < 0: |
|
285 | elif size < 0: | |
280 | sign = "-" |
|
286 | sign = "-" | |
281 | size = -size |
|
287 | size = -size | |
282 | m = int(math.log(size, base)) |
|
288 | m = int(math.log(size, base)) | |
283 | else: |
|
289 | else: | |
284 | m = 0 |
|
290 | m = 0 | |
285 | if m > 8: |
|
291 | if m > 8: | |
286 | m = 8 |
|
292 | m = 8 | |
287 |
|
293 | |||
288 | if m == 0: |
|
294 | if m == 0: | |
289 |
precision = |
|
295 | precision = '%.0f' | |
290 | else: |
|
296 | else: | |
291 |
precision = |
|
297 | precision = '%%.%df' % precision | |
292 |
|
298 | |||
293 | size = precision % (size / math.pow(base, m)) |
|
299 | size = precision % (size / math.pow(base, m)) | |
294 |
|
300 | |||
295 |
return |
|
301 | return '%s%s %s%s' % (sign, size.strip(), multiples[m], unit) | |
296 |
|
302 | |||
297 |
|
303 | |||
298 | def _check_memory_usage(worker): |
|
304 | def _check_memory_usage(worker): | |
299 | _memory_max_usage = worker._memory_max_usage |
|
305 | _memory_max_usage = worker._memory_max_usage | |
300 | if not _memory_max_usage: |
|
306 | if not _memory_max_usage: | |
301 | return |
|
307 | return | |
302 |
|
308 | |||
303 | _memory_usage_check_interval = worker._memory_usage_check_interval |
|
309 | _memory_usage_check_interval = worker._memory_usage_check_interval | |
304 | _memory_usage_recovery_threshold = memory_max_usage * worker._memory_usage_recovery_threshold |
|
310 | _memory_usage_recovery_threshold = memory_max_usage * worker._memory_usage_recovery_threshold | |
305 |
|
311 | |||
306 | elapsed = time.time() - worker._last_memory_check_time |
|
312 | elapsed = time.time() - worker._last_memory_check_time | |
307 | if elapsed > _memory_usage_check_interval: |
|
313 | if elapsed > _memory_usage_check_interval: | |
308 | mem_usage = _get_process_rss() |
|
314 | mem_usage = _get_process_rss() | |
309 | if mem_usage and mem_usage > _memory_max_usage: |
|
315 | if mem_usage and mem_usage > _memory_max_usage: | |
310 | worker.log.info( |
|
316 | worker.log.info( | |
311 |
"memory usage %s > %s, forcing gc", |
|
317 | "memory usage %s > %s, forcing gc", | |
312 | ) |
|
318 | _format_data_size(mem_usage), _format_data_size(_memory_max_usage)) | |
313 | # Try to clean it up by forcing a full collection. |
|
319 | # Try to clean it up by forcing a full collection. | |
314 | gc.collect() |
|
320 | gc.collect() | |
315 | mem_usage = _get_process_rss() |
|
321 | mem_usage = _get_process_rss() | |
316 | if mem_usage > _memory_usage_recovery_threshold: |
|
322 | if mem_usage > _memory_usage_recovery_threshold: | |
317 | # Didn't clean up enough, we'll have to terminate. |
|
323 | # Didn't clean up enough, we'll have to terminate. | |
318 | worker.log.warning( |
|
324 | worker.log.warning( | |
319 | "memory usage %s > %s after gc, quitting", |
|
325 | "memory usage %s > %s after gc, quitting", | |
320 | _format_data_size(mem_usage), |
|
326 | _format_data_size(mem_usage), _format_data_size(_memory_max_usage)) | |
321 | _format_data_size(_memory_max_usage), |
|
|||
322 | ) |
|
|||
323 | # This will cause worker to auto-restart itself |
|
327 | # This will cause worker to auto-restart itself | |
324 | worker.alive = False |
|
328 | worker.alive = False | |
325 | worker._last_memory_check_time = time.time() |
|
329 | worker._last_memory_check_time = time.time() | |
326 |
|
330 | |||
327 |
|
331 | |||
328 | def worker_int(worker): |
|
332 | def worker_int(worker): | |
329 | worker.log.info("pid=[%-10s] worker received INT or QUIT signal", worker.pid) |
|
333 | worker.log.info("pid=[%-10s] worker received INT or QUIT signal", worker.pid) | |
330 |
|
334 | |||
331 | # get traceback info, when a worker crashes |
|
335 | # get traceback info, when a worker crashes | |
332 | def get_thread_id(t_id): |
|
336 | def get_thread_id(t_id): | |
333 | id2name = dict([(th.ident, th.name) for th in threading.enumerate()]) |
|
337 | id2name = dict([(th.ident, th.name) for th in threading.enumerate()]) | |
334 | return id2name.get(t_id, "unknown_thread_id") |
|
338 | return id2name.get(t_id, "unknown_thread_id") | |
335 |
|
339 | |||
336 | code = [] |
|
340 | code = [] | |
337 | for thread_id, stack in sys._current_frames().items(): # noqa |
|
341 | for thread_id, stack in sys._current_frames().items(): # noqa | |
338 | code.append("\n# Thread: %s(%d)" % (get_thread_id(thread_id), thread_id)) |
|
342 | code.append( | |
|
343 | "\n# Thread: %s(%d)" % (get_thread_id(thread_id), thread_id)) | |||
339 | for fname, lineno, name, line in traceback.extract_stack(stack): |
|
344 | for fname, lineno, name, line in traceback.extract_stack(stack): | |
340 | code.append('File: "%s", line %d, in %s' % (fname, lineno, name)) |
|
345 | code.append('File: "%s", line %d, in %s' % (fname, lineno, name)) | |
341 | if line: |
|
346 | if line: | |
342 | code.append(" %s" % (line.strip())) |
|
347 | code.append(" %s" % (line.strip())) | |
343 | worker.log.debug("\n".join(code)) |
|
348 | worker.log.debug("\n".join(code)) | |
344 |
|
349 | |||
345 |
|
350 | |||
346 | def worker_abort(worker): |
|
351 | def worker_abort(worker): | |
347 | worker.log.info("pid=[%-10s] worker received SIGABRT signal", worker.pid) |
|
352 | worker.log.info("pid=[%-10s] worker received SIGABRT signal", worker.pid) | |
348 |
|
353 | |||
349 |
|
354 | |||
350 | def worker_exit(server, worker): |
|
355 | def worker_exit(server, worker): | |
351 | worker.log.info("pid=[%-10s] worker exit", worker.pid) |
|
356 | worker.log.info("pid=[%-10s] worker exit", worker.pid) | |
352 |
|
357 | |||
353 |
|
358 | |||
354 | def child_exit(server, worker): |
|
359 | def child_exit(server, worker): | |
355 | worker.log.info("pid=[%-10s] worker child exit", worker.pid) |
|
360 | worker.log.info("pid=[%-10s] worker child exit", worker.pid) | |
356 |
|
361 | |||
357 |
|
362 | |||
358 | def pre_request(worker, req): |
|
363 | def pre_request(worker, req): | |
359 | worker.start_time = time.time() |
|
364 | worker.start_time = time.time() | |
360 | worker.log.debug("GNCRN PRE WORKER [cnt:%s]: %s %s", worker.nr, req.method, req.path) |
|
365 | worker.log.debug( | |
|
366 | "GNCRN PRE WORKER [cnt:%s]: %s %s", worker.nr, req.method, req.path) | |||
361 |
|
367 | |||
362 |
|
368 | |||
363 | def post_request(worker, req, environ, resp): |
|
369 | def post_request(worker, req, environ, resp): | |
364 | total_time = time.time() - worker.start_time |
|
370 | total_time = time.time() - worker.start_time | |
365 | # Gunicorn sometimes has problems with reading the status_code |
|
371 | # Gunicorn sometimes has problems with reading the status_code | |
366 |
status_code = getattr(resp, |
|
372 | status_code = getattr(resp, 'status_code', '') | |
367 | worker.log.debug( |
|
373 | worker.log.debug( | |
368 | "GNCRN POST WORKER [cnt:%s]: %s %s resp: %s, Load Time: %.4fs", |
|
374 | "GNCRN POST WORKER [cnt:%s]: %s %s resp: %s, Load Time: %.4fs", | |
369 | worker.nr, |
|
375 | worker.nr, req.method, req.path, status_code, total_time) | |
370 | req.method, |
|
|||
371 | req.path, |
|
|||
372 | status_code, |
|
|||
373 | total_time, |
|
|||
374 | ) |
|
|||
375 | _check_memory_usage(worker) |
|
376 | _check_memory_usage(worker) | |
376 |
|
377 | |||
377 |
|
378 | |||
378 | def _filter_proxy(ip): |
|
379 | def _filter_proxy(ip): | |
379 | """ |
|
380 | """ | |
380 | Passed in IP addresses in HEADERS can be in a special format of multiple |
|
381 | Passed in IP addresses in HEADERS can be in a special format of multiple | |
381 | ips. Those comma separated IPs are passed from various proxies in the |
|
382 | ips. Those comma separated IPs are passed from various proxies in the | |
382 | chain of request processing. The left-most being the original client. |
|
383 | chain of request processing. The left-most being the original client. | |
383 | We only care about the first IP which came from the org. client. |
|
384 | We only care about the first IP which came from the org. client. | |
384 |
|
385 | |||
385 | :param ip: ip string from headers |
|
386 | :param ip: ip string from headers | |
386 | """ |
|
387 | """ | |
387 |
if |
|
388 | if ',' in ip: | |
388 |
_ips = ip.split( |
|
389 | _ips = ip.split(',') | |
389 | _first_ip = _ips[0].strip() |
|
390 | _first_ip = _ips[0].strip() | |
390 | return _first_ip |
|
391 | return _first_ip | |
391 | return ip |
|
392 | return ip | |
392 |
|
393 | |||
393 |
|
394 | |||
394 | def _filter_port(ip): |
|
395 | def _filter_port(ip): | |
395 | """ |
|
396 | """ | |
396 | Removes a port from ip, there are 4 main cases to handle here. |
|
397 | Removes a port from ip, there are 4 main cases to handle here. | |
397 | - ipv4 eg. 127.0.0.1 |
|
398 | - ipv4 eg. 127.0.0.1 | |
398 | - ipv6 eg. ::1 |
|
399 | - ipv6 eg. ::1 | |
399 | - ipv4+port eg. 127.0.0.1:8080 |
|
400 | - ipv4+port eg. 127.0.0.1:8080 | |
400 | - ipv6+port eg. [::1]:8080 |
|
401 | - ipv6+port eg. [::1]:8080 | |
401 |
|
402 | |||
402 | :param ip: |
|
403 | :param ip: | |
403 | """ |
|
404 | """ | |
404 |
|
||||
405 | def is_ipv6(ip_addr): |
|
405 | def is_ipv6(ip_addr): | |
406 |
if hasattr(socket, |
|
406 | if hasattr(socket, 'inet_pton'): | |
407 | try: |
|
407 | try: | |
408 | socket.inet_pton(socket.AF_INET6, ip_addr) |
|
408 | socket.inet_pton(socket.AF_INET6, ip_addr) | |
409 | except socket.error: |
|
409 | except socket.error: | |
410 | return False |
|
410 | return False | |
411 | else: |
|
411 | else: | |
412 | return False |
|
412 | return False | |
413 | return True |
|
413 | return True | |
414 |
|
414 | |||
415 |
if |
|
415 | if ':' not in ip: # must be ipv4 pure ip | |
416 | return ip |
|
416 | return ip | |
417 |
|
417 | |||
418 |
if |
|
418 | if '[' in ip and ']' in ip: # ipv6 with port | |
419 |
return ip.split( |
|
419 | return ip.split(']')[0][1:].lower() | |
420 |
|
420 | |||
421 | # must be ipv6 or ipv4 with port |
|
421 | # must be ipv6 or ipv4 with port | |
422 | if is_ipv6(ip): |
|
422 | if is_ipv6(ip): | |
423 | return ip |
|
423 | return ip | |
424 | else: |
|
424 | else: | |
425 |
ip, _port = ip.split( |
|
425 | ip, _port = ip.split(':')[:2] # means ipv4+port | |
426 | return ip |
|
426 | return ip | |
427 |
|
427 | |||
428 |
|
428 | |||
429 | def get_ip_addr(environ): |
|
429 | def get_ip_addr(environ): | |
430 |
proxy_key = |
|
430 | proxy_key = 'HTTP_X_REAL_IP' | |
431 |
proxy_key2 = |
|
431 | proxy_key2 = 'HTTP_X_FORWARDED_FOR' | |
432 |
def_key = |
|
432 | def_key = 'REMOTE_ADDR' | |
433 |
|
433 | |||
434 | def _filters(x): |
|
434 | def _filters(x): | |
435 | return _filter_port(_filter_proxy(x)) |
|
435 | return _filter_port(_filter_proxy(x)) | |
436 |
|
436 | |||
437 | ip = environ.get(proxy_key) |
|
437 | ip = environ.get(proxy_key) | |
438 | if ip: |
|
438 | if ip: | |
439 | return _filters(ip) |
|
439 | return _filters(ip) | |
440 |
|
440 | |||
441 | ip = environ.get(proxy_key2) |
|
441 | ip = environ.get(proxy_key2) | |
442 | if ip: |
|
442 | if ip: | |
443 | return _filters(ip) |
|
443 | return _filters(ip) | |
444 |
|
444 | |||
445 |
ip = environ.get(def_key, |
|
445 | ip = environ.get(def_key, '0.0.0.0') | |
446 | return _filters(ip) |
|
446 | return _filters(ip) | |
447 |
|
447 | |||
448 |
|
448 | |||
449 | class RhodeCodeLogger(Logger): |
|
449 | class RhodeCodeLogger(Logger): | |
450 | """ |
|
450 | """ | |
451 | Custom Logger that allows some customization that gunicorn doesn't allow |
|
451 | Custom Logger that allows some customization that gunicorn doesn't allow | |
452 | """ |
|
452 | """ | |
453 |
|
453 | |||
454 | datefmt = r"%Y-%m-%d %H:%M:%S" |
|
454 | datefmt = r"%Y-%m-%d %H:%M:%S" | |
455 |
|
455 | |||
456 | def __init__(self, cfg): |
|
456 | def __init__(self, cfg): | |
457 | Logger.__init__(self, cfg) |
|
457 | Logger.__init__(self, cfg) | |
458 |
|
458 | |||
459 | def now(self): |
|
459 | def now(self): | |
460 | """return date in RhodeCode Log format""" |
|
460 | """ return date in RhodeCode Log format """ | |
461 | now = time.time() |
|
461 | now = time.time() | |
462 | msecs = int((now - int(now)) * 1000) |
|
462 | msecs = int((now - int(now)) * 1000) | |
463 |
return time.strftime(self.datefmt, time.localtime(now)) + |
|
463 | return time.strftime(self.datefmt, time.localtime(now)) + '.{0:03d}'.format(msecs) | |
464 |
|
464 | |||
465 | def atoms(self, resp, req, environ, request_time): |
|
465 | def atoms(self, resp, req, environ, request_time): | |
466 |
"""Gets atoms for log formatting. |
|
466 | """ Gets atoms for log formatting. | |
|
467 | """ | |||
467 | status = resp.status |
|
468 | status = resp.status | |
468 | if isinstance(status, str): |
|
469 | if isinstance(status, str): | |
469 | status = status.split(None, 1)[0] |
|
470 | status = status.split(None, 1)[0] | |
470 | atoms = { |
|
471 | atoms = { | |
471 |
|
|
472 | 'h': get_ip_addr(environ), | |
472 |
|
|
473 | 'l': '-', | |
473 |
|
|
474 | 'u': self._get_user(environ) or '-', | |
474 |
|
|
475 | 't': self.now(), | |
475 |
|
|
476 | 'r': "%s %s %s" % (environ['REQUEST_METHOD'], | |
476 | "s": status, |
|
477 | environ['RAW_URI'], | |
477 | "m": environ.get("REQUEST_METHOD"), |
|
478 | environ["SERVER_PROTOCOL"]), | |
478 | "U": environ.get("PATH_INFO"), |
|
479 | 's': status, | |
479 |
|
|
480 | 'm': environ.get('REQUEST_METHOD'), | |
480 |
|
|
481 | 'U': environ.get('PATH_INFO'), | |
481 | "b": getattr(resp, "sent", None) is not None and str(resp.sent) or "-", |
|
482 | 'q': environ.get('QUERY_STRING'), | |
482 | "B": getattr(resp, "sent", None), |
|
483 | 'H': environ.get('SERVER_PROTOCOL'), | |
483 | "f": environ.get("HTTP_REFERER", "-"), |
|
484 | 'b': getattr(resp, 'sent', None) is not None and str(resp.sent) or '-', | |
484 | "a": environ.get("HTTP_USER_AGENT", "-"), |
|
485 | 'B': getattr(resp, 'sent', None), | |
485 | "T": request_time.seconds, |
|
486 | 'f': environ.get('HTTP_REFERER', '-'), | |
486 | "D": (request_time.seconds * 1000000) + request_time.microseconds, |
|
487 | 'a': environ.get('HTTP_USER_AGENT', '-'), | |
487 | "M": (request_time.seconds * 1000) + int(request_time.microseconds / 1000), |
|
488 | 'T': request_time.seconds, | |
488 |
|
|
489 | 'D': (request_time.seconds * 1000000) + request_time.microseconds, | |
489 | "p": "<%s>" % os.getpid(), |
|
490 | 'M': (request_time.seconds * 1000) + int(request_time.microseconds/1000), | |
|
491 | 'L': "%d.%06d" % (request_time.seconds, request_time.microseconds), | |||
|
492 | 'p': "<%s>" % os.getpid() | |||
490 | } |
|
493 | } | |
491 |
|
494 | |||
492 | # add request headers |
|
495 | # add request headers | |
493 |
if hasattr(req, |
|
496 | if hasattr(req, 'headers'): | |
494 | req_headers = req.headers |
|
497 | req_headers = req.headers | |
495 | else: |
|
498 | else: | |
496 | req_headers = req |
|
499 | req_headers = req | |
497 |
|
500 | |||
498 | if hasattr(req_headers, "items"): |
|
501 | if hasattr(req_headers, "items"): | |
499 | req_headers = req_headers.items() |
|
502 | req_headers = req_headers.items() | |
500 |
|
503 | |||
501 | atoms.update({"{%s}i" % k.lower(): v for k, v in req_headers}) |
|
504 | atoms.update({"{%s}i" % k.lower(): v for k, v in req_headers}) | |
502 |
|
505 | |||
503 | resp_headers = resp.headers |
|
506 | resp_headers = resp.headers | |
504 | if hasattr(resp_headers, "items"): |
|
507 | if hasattr(resp_headers, "items"): | |
505 | resp_headers = resp_headers.items() |
|
508 | resp_headers = resp_headers.items() | |
506 |
|
509 | |||
507 | # add response headers |
|
510 | # add response headers | |
508 | atoms.update({"{%s}o" % k.lower(): v for k, v in resp_headers}) |
|
511 | atoms.update({"{%s}o" % k.lower(): v for k, v in resp_headers}) | |
509 |
|
512 | |||
510 | # add environ variables |
|
513 | # add environ variables | |
511 | environ_variables = environ.items() |
|
514 | environ_variables = environ.items() | |
512 | atoms.update({"{%s}e" % k.lower(): v for k, v in environ_variables}) |
|
515 | atoms.update({"{%s}e" % k.lower(): v for k, v in environ_variables}) | |
513 |
|
516 | |||
514 | return atoms |
|
517 | return atoms | |
515 |
|
518 | |||
516 |
|
519 | |||
517 | logger_class = RhodeCodeLogger |
|
520 | logger_class = RhodeCodeLogger |
General Comments 0
You need to be logged in to leave comments.
Login now