mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Compare commits
9 Commits
72c1e495d8
...
bb554053bb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bb554053bb | ||
|
|
6f9b8a5a7e | ||
|
|
6b60bcff7e | ||
|
|
ca67a87c37 | ||
|
|
73eae94e8b | ||
|
|
a86ea1e4e6 | ||
|
|
d05b6c5425 | ||
|
|
1bc351e794 | ||
|
|
02e5f64c76 |
@ -5,6 +5,7 @@ This is a fork of gunicorn with the following changes:
|
||||
|
||||
1. Request timeout implementation for `gthread` - https://github.com/frappe/gunicorn/pull/1 (upstream doesn't have any, we NEED this.)
|
||||
2. Higher timeout for `selector` - https://github.com/frappe/gunicorn/pull/2 (This is a small optional performance improvement)
|
||||
3. https://github.com/benoitc/gunicorn/pull/2918 is reverted to avoid connection resets while draining or restarting a worker.
|
||||
|
||||
Note to anyone upgrading/adding changes:
|
||||
- Pull upstream changes
|
||||
|
||||
@ -1177,7 +1177,7 @@ class Group(Setting):
|
||||
Switch worker process to run as this group.
|
||||
|
||||
A valid group id (as an integer) or the name of a user that can be
|
||||
retrieved with a call to ``pwd.getgrnam(value)`` or ``None`` to not
|
||||
retrieved with a call to ``grp.getgrnam(value)`` or ``None`` to not
|
||||
change the worker processes group.
|
||||
"""
|
||||
|
||||
|
||||
@ -41,15 +41,12 @@ class TConn:
|
||||
|
||||
self.timeout = None
|
||||
self.parser = None
|
||||
self.initialized = False
|
||||
|
||||
# set the socket to non blocking
|
||||
self.sock.setblocking(False)
|
||||
|
||||
def init(self):
|
||||
self.initialized = True
|
||||
self.sock.setblocking(True)
|
||||
|
||||
if self.parser is None:
|
||||
# wrap the socket if needed
|
||||
if self.cfg.is_ssl:
|
||||
@ -130,27 +127,23 @@ class ThreadWorker(base.Worker):
|
||||
conn = TConn(self.cfg, sock, client, server)
|
||||
|
||||
self.nr_conns += 1
|
||||
# wait until socket is readable
|
||||
with self._lock:
|
||||
self.poller.register(conn.sock, selectors.EVENT_READ,
|
||||
partial(self.on_client_socket_readable, conn))
|
||||
# enqueue the job
|
||||
self.enqueue_req(conn)
|
||||
except OSError as e:
|
||||
if e.errno not in (errno.EAGAIN, errno.ECONNABORTED,
|
||||
errno.EWOULDBLOCK):
|
||||
raise
|
||||
|
||||
def on_client_socket_readable(self, conn, client):
|
||||
def reuse_connection(self, conn, client):
|
||||
with self._lock:
|
||||
# unregister the client from the poller
|
||||
self.poller.unregister(client)
|
||||
|
||||
if conn.initialized:
|
||||
# remove the connection from keepalive
|
||||
try:
|
||||
self._keep.remove(conn)
|
||||
except ValueError:
|
||||
# race condition
|
||||
return
|
||||
# remove the connection from keepalive
|
||||
try:
|
||||
self._keep.remove(conn)
|
||||
except ValueError:
|
||||
# race condition
|
||||
return
|
||||
|
||||
# submit the connection to a worker
|
||||
self.enqueue_req(conn)
|
||||
@ -285,7 +278,7 @@ class ThreadWorker(base.Worker):
|
||||
|
||||
# add the socket to the event loop
|
||||
self.poller.register(conn.sock, selectors.EVENT_READ,
|
||||
partial(self.on_client_socket_readable, conn))
|
||||
partial(self.reuse_connection, conn))
|
||||
else:
|
||||
self.nr_conns -= 1
|
||||
conn.close()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user