I'm using Python's concurrent.futures module (module version 2.1.3, Python version 2.7.3). I have nginx running with 4 worker processes, and 4 uWSGI running (on Ubuntu precise) as an upstart daemon, with the following uwsgi config (note enable-threads is true, so the GIL is accessible, and lazy is true):
virtualenv=[ path to venv ]
chdir=[ path to python project ]
enable-threads=true
lazy=true
buffer-size=32768
post-buffering=true
processes=4
master=true
module=[ my app ].wsgi
callable=wsgi_app
logto=/var/log/uwsgi.log
pidfile=[ replaced ]
plugins=python27
socket=[ replaced, but works fine ]
The entire app works fine, but it seems that some missing context is not available to the futures pool: When I call somefunc() without future(), all is well, but when I call somefunc() with future, the HTTP request (I'm using Flask) hangs for quite some time before failing.
The only entries to the log file are related to HTTP requests, and general wsgi startup stuff like:
WSGI application 0 (mountpoint='') ready on interpreter 0x11820a0 pid: 26980 (default app)
How can I get some visibility into the futures execution, or figure out what context might not be available to the futures pool?
Does that make sense?
Thanks in advance.