You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
causes hangs when SC_OPEN_MAX is very large for instance in Docker containers.
In said Docker container:
root@8fd7761924b0:/app/octopoes# python
Python 3.11.7 (main, Jan 11 2024, 10:33:01) [GCC 12.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.sysconf('SC_OPEN_MAX')
1073741816
The line
return os.sysconf('SC_OPEN_MAX')
inbilliard/billiard/compat.py
Lines 95 to 112 in 1392223
In said Docker container:
the line returns a large number. Resulting
billiard/billiard/compat.py
Lines 144 to 153 in 1392223
strace
on the process (snip):This bug possibly causes issues like celery/celery#8306 and related.
The text was updated successfully, but these errors were encountered: