Revert "gthread: only read sockets when they are readable" (#7)

* Revert "gthread: only read sockets when they are readable"

This reverts commit 0ebb73aa240f0ecffe3e0922d54cfece19f5bfed.

* chore: update readme
This commit is contained in:
Ankush Menat 2025-05-07 19:38:52 +05:30 committed by GitHub
commit 6b60bcff7e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 18 deletions

View File

@ -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.) 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) 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: Note to anyone upgrading/adding changes:
- Pull upstream changes - Pull upstream changes

View File

@ -41,15 +41,12 @@ class TConn:
self.timeout = None self.timeout = None
self.parser = None self.parser = None
self.initialized = False
# set the socket to non blocking # set the socket to non blocking
self.sock.setblocking(False) self.sock.setblocking(False)
def init(self): def init(self):
self.initialized = True
self.sock.setblocking(True) self.sock.setblocking(True)
if self.parser is None: if self.parser is None:
# wrap the socket if needed # wrap the socket if needed
if self.cfg.is_ssl: if self.cfg.is_ssl:
@ -130,27 +127,23 @@ class ThreadWorker(base.Worker):
conn = TConn(self.cfg, sock, client, server) conn = TConn(self.cfg, sock, client, server)
self.nr_conns += 1 self.nr_conns += 1
# wait until socket is readable # enqueue the job
with self._lock: self.enqueue_req(conn)
self.poller.register(conn.sock, selectors.EVENT_READ, except EnvironmentError as e:
partial(self.on_client_socket_readable, conn))
except OSError as e:
if e.errno not in (errno.EAGAIN, errno.ECONNABORTED, if e.errno not in (errno.EAGAIN, errno.ECONNABORTED,
errno.EWOULDBLOCK): errno.EWOULDBLOCK):
raise raise
def on_client_socket_readable(self, conn, client): def reuse_connection(self, conn, client):
with self._lock: with self._lock:
# unregister the client from the poller # unregister the client from the poller
self.poller.unregister(client) self.poller.unregister(client)
# remove the connection from keepalive
if conn.initialized: try:
# remove the connection from keepalive self._keep.remove(conn)
try: except ValueError:
self._keep.remove(conn) # race condition
except ValueError: return
# race condition
return
# submit the connection to a worker # submit the connection to a worker
self.enqueue_req(conn) self.enqueue_req(conn)
@ -285,7 +278,7 @@ class ThreadWorker(base.Worker):
# add the socket to the event loop # add the socket to the event loop
self.poller.register(conn.sock, selectors.EVENT_READ, self.poller.register(conn.sock, selectors.EVENT_READ,
partial(self.on_client_socket_readable, conn)) partial(self.reuse_connection, conn))
else: else:
self.nr_conns -= 1 self.nr_conns -= 1
conn.close() conn.close()