Gevent is an amazing non-blocking Python network library built on top of libev
and greenlet
.
Even if uWSGI supports Greenlet as suspend-resume/greenthread/coroutine library, it requires a lot of effort and code modifications to work with gevent.
The gevent plugin requires gevent 1.0.0 and :doc:`Async<Async>` mode.
- The :doc:`SignalFramework` is fully working with Gevent mode. Each handler will be executed in a dedicated greenlet. Look at :file:`tests/ugevent.py` for an example.
- uWSGI multithread mode (
threads
option) will not work with Gevent. Running Python threads in your apps is supported. - Mixing uWSGI's Async API with gevent's is EXPLICITLY FORBIDDEN.
The gevent plugin is compiled in by default when the default profile is used.
Doing a
pip install uwsgi
will install the python plugin as well as the gevent one
A 'gevent' build profile can be found in the :file:`buildconf` directory.
python uwsgiconfig --build gevent
# or...
UWSGI_PROFILE=gevent make
# or...
UWSGI_PROFILE=gevent pip install git+git://github.com/unbit/uwsgi.git
# or...
python uwsgiconfig --plugin plugins/gevent # external plugin
uwsgi --loop gevent --socket :3031 --module myapp --async 100
# or if built as an external plugin,
uwsgi --plugins gevent --loop gevent --socket :3031 --module myapp --async 100
Set the --async
value to the maximum number of concurrent connections you want to accept.
Starting from 1.3 you can use the --gevent shortcut, that will set optimal parameters
uwsgi --plugins gevent --gevent 100 --socket :3031 --module myapp
the argument of --gevent is the number of async cores to spawn
This example shows how to sleep in a request, how to make asynchronous network requests and how to continue doing logic after a request has been closed.
import gevent
import gevent.socket
def bg_task():
for i in range(1,10):
print "background task", i
gevent.sleep(2)
def long_task():
for i in range(1,10):
print i
gevent.sleep()
def application(e, sr):
sr('200 OK', [('Content-Type','text/html')])
t = gevent.spawn(long_task)
t.join()
yield "sleeping for 3 seconds...<br/>"
gevent.sleep(3)
yield "done<br>"
yield "getting some ips...<br/>"
urls = ['www.google.com', 'www.example.com', 'www.python.org', 'projects.unbit.it']
jobs = [gevent.spawn(gevent.socket.gethostbyname, url) for url in urls]
gevent.joinall(jobs, timeout=2)
for j in jobs:
yield "ip = %s<br/>" % j.value
gevent.spawn(bg_task) # this task will go on after request end
If you're testing a WSGI application that generates a stream of data, you should know that
curl
by default buffers data until a newline. So make sure you either disable curl's buffering with-N
or have regular newlines in your output.If you are using Nginx in front of uWSGI and wish to stream data from your app, you'll probably want to disable Nginx's buffering.
uwsgi_buffering off;