greenlet is a Python C-extension that adds lightweight coroutines to the language, useful for cooperative multitasking.
-1
votes
1answer
33 views
How does a connection pool in MongoDB with pymongo driver?
I'm using mongodb with pymongo driver on gevent based framework. I don't understand working pool connection. I'm creating a new connection instance on every request:
connection = ...
0
votes
1answer
28 views
Using `greenlet` as decorator
Would it make sense to use greenlet.greenlet as a decorator, converting a regular function to a greenlet as follows:
from greenlet import greenlet
@greenlet
def f(args):
# ...
z = g.switch(u)
...
1
vote
0answers
47 views
What is a Python greenlet? [closed]
What is a Python greenlet? I know they are "lightweight coroutines," but what's lightweight about them? What are some good use cases?
0
votes
1answer
34 views
Catching exceptions raised in the greenlets
I'm trying to catch the exceptions raised within the greenlets. According to this tutorial, unfortunately 'exceptions raised in the Greenlet, stay inside the Greenlet'. In the code below, I have a ...
0
votes
0answers
34 views
Catch SIGINT while executing multiple threads using greenlets
I'm working on a project of my own built up following an actor's model using greenlets. The whole thing is finished and works great but in the main binary file that i've created i'm registering a new ...
3
votes
1answer
164 views
Greenlet Vs. Threads
I am new to gevents and greenlets. I found some good documentation on how to work with them, but none gave me justification on how and when should I use greenlets ?
What are they really good at ?
...
1
vote
1answer
103 views
Does gunicorn + gevent monkey patch threadlocals to be greenlet-locals automatically?
When running gunicorn in gevent mode, are the monkey patches (particularly those for threadlocals) described here, which make threadlocals greenlet-locals, already applied automatically?
(I am ...
0
votes
0answers
53 views
doing SOAP with gevent / greenlets in Python
What is my best option to do SOAP in the gevent / greenlet framework in Python?
I saw some references saying that SUDS may not work. Are there any options?
I am open to something that might work in ...
-4
votes
1answer
138 views
gevent block call django model save method inside green thread after monkey patch [closed]
I want to call django models save method in my greenlet in block mode after monkey patching socket.
...
monkey.patch_socket()
...
def my_green(django_model):
#fetch some urls in async here
...
2
votes
1answer
77 views
Why does gevent execute this unjoined greenlet?
Code:
import gevent
import time
def func(a, t):
time.sleep(t)
print "got here", a
gevent.spawn(func, 'a', 4)
gevent.spawn(func, 'b', 0).join()
time.sleep(3)
print "exit"
Output:
got here a
...
1
vote
1answer
87 views
Python and truly concurrent threads
I've been reading for hours now and I can completely figure out how python multi threading is faster than a single thread.
The question really stems from GIL. If there is GIL, and only one thread is ...
0
votes
1answer
406 views
gevent pool.wait_available() method meaning
Look, people. We have a question about gevent.pool class and pool.wait_available() method, both code snippets
1.
def fetch(url):
print 'start fetching...', url
data = urllib2.urlopen(url)
...
0
votes
1answer
164 views
Wait until one of several greenlets finished
I have two functions that receives data from two different connections, and i should close both connections after getting result from one of them.
def first():
gevent.sleep(randint(1, 100)) # i ...
1
vote
0answers
231 views
gevent timeout error on socket.io connection
I have a setup containing varnish nginx and 2 pyramid backends one of them running socket.io app. All the stack works correctly on my local development computer, but i can't get to work the websocket ...
0
votes
1answer
146 views
gevent and socksipy
I was wondering if anyone has tried using [gevent][1] and [socksipy][2] for concurrent downloads.
2
votes
1answer
349 views
How to use gevent and tornado in a single application?
I'm working on using gevent and tornado inside the same application so that libraries that doesn't support tornado's ioloop can be subdued to use gevent to act asynchronously. I thought I'd need to ...
2
votes
1answer
117 views
Gevent greenlet bubbling up exceptions to the parent
In using gevent, whenever a child greenlet throws an exception, I would like it to bubble up to the parent (and ideally have the parent throw the exception). In the documentation for greenlets, it ...
1
vote
1answer
201 views
Deadlock with PyMongo and gevent
I am using PyMongo and gevent together, from a Django application. In production, it is hosted on Gunicorn.
I am creating a single Connection object at startup of my application. I have some ...
1
vote
2answers
892 views
cross-compile of Python's greenlet and gevent on Linux x86_64 for PowerPC
On my Linux x86_64 host, I am trying to cross-compile some additional Python modules for my PowerPC target, specifically, greenlet, gevent, and gevent-websockets. Currently, I am stuck just trying to ...
2
votes
2answers
504 views
Is blocking an issue with greenlets?
I understand blocking code is a sin when it comes to event loops (i.e. NodeJS), but what about with greenlets (which I believe are green threads)? Is there an issue running code that calls blocking ...
3
votes
1answer
697 views
Gevent exceptions in Django when patching Python modules
I have installed the gevent and greenlet libraries and in the __init__.py file of my Djano application I dumped in these two lines:
from gevent import monkey
monkey.patch_all()
Now it's very often ...
10
votes
2answers
1k views
Making Django go green
I have a Django management command that makes thousands of TCP/UDP requests. I've used Gevent to speed this up as I've restructured my code to work as coroutines. The socket connections no longer ...
3
votes
3answers
522 views
how to capture a traceback in gevent
I've spawned a Greenlet and linked it to a callable. Some time later, the Greenlet fails with an Exception. The linked callable gets called. That's all great!
Here's the issue:
The traceback for the ...
10
votes
1answer
2k views
Stackless in PyPy and PyPy + greenlet - differences
New version of PyPy ships with integrated Stackless.
As far as I know the bundled Stackless is not the same as the origin Stackless from 2001 with continuations. So mainly it is the green threads ...
10
votes
8answers
794 views
Lightweight notification technique
I need to develop a realtime recent activity feed in django (with AJAX long-polling), and I'm wondering what's the best strategy for the server-side.
Pseudocode:
def recent_activity_post_save():
...
2
votes
1answer
2k views
Gevent Pywsgi Server - Multiprocessing?
The following code (taken from here: https://bitbucket.org/denis/gevent/src/6c710e8ae58b/examples/wsgiserver_ssl.py) implements an extremely fast greenlet powered wsgi webserver:
#!/usr/bin/python
...
1
vote
1answer
366 views
Problems in scraping and saving file by eventlet
I can use evenlet to scrap img from website but failed to save them into domestic directory.
Following is the code. Any one is familiar with the I/O operation in tasklets model? Thanks
import pyquery
...
8
votes
6answers
1k views
Erlang-like concurrency for Python?
Is there anything for Python that has concurrency like Erlang does, particulary transparent actors over networks? I've looked at things like greenlet and stackless, but they don't seem to have network ...
3
votes
1answer
378 views
Forking Greenlets
Perhaps I'm missing something obvious (and it is a Friday), but is there a way to do the equivalent of an os.fork() on a greenlet? I'm not necessarily looking to fork the process, I'm looking to take ...
2
votes
3answers
3k views
I'm looking for gevent for Python 2.7 for windows
However gevent depends upon greenlet and the .msi version I found fails to install and the egg for 2.6 refuses to install.
The msi version fails as follows.
C:\Windows\system32>easy_install ...

