The eventlet tag has no wiki summary.
14
votes
11answers
1k views
How to efficiently do many tasks a “little later” in Python?
I have a process, that needs to perform a bunch of actions "later" (after 10-60 seconds usually). The problem is that those "later" actions can be a lot (1000s), so using a Thread per task is not ...
14
votes
3answers
5k views
Eventlet or gevent or Stackless + Twisted, Pylons, Django and SQL Alchemy
We're using Twisted extensively for apps requiring a great deal of asynchronous io. There are some cases where stuff is cpu bound instead and for that we spawn a pool of processes to do the work and ...
6
votes
1answer
915 views
Twisted, gevent eventlet - When would I use them
Under what circumstances would something like eventlet/gevent be better than twisted? Twisted seems like the most used, but eventlet/gevent must have some advantages...
I'm not looking for an answer ...
5
votes
3answers
317 views
What are some modern Comet servers written in Python?
I've built my application in python (using greenthreads from eventlent) and I was supposed to use Orbited as comet server to pass requests from user-end javascript code to my application.
Sadly, I ...
3
votes
1answer
395 views
Speed of fetching web pages with Eventlet and Python?
I am writing a relatively simple crawler in Python but I want to use asynchronous networking lib in order to fetch multiple pages concurrently.I saw the examples on their page but when I apply the ...
3
votes
2answers
868 views
Fastest way to download 3 million objects from a S3 bucket
I've tried using Python + boto + multiprocessing, S3cmd and J3tset but struggling with all of them.
Any suggestions, perhaps a ready-made script you've been using or another way I don't know of?
...
3
votes
2answers
189 views
high performance (yet dumb) web server
I'm trying to write a very simple web server that does the following:
Receive request.
Respond with a tiny file; close the connection.
Handle the request data.
In other words, the response doesn't ...
2
votes
1answer
87 views
How to make non-blocking raw_input when using eventlet.monkey_patch() and why it block everything, even when executed on another thread?
I wrote this minimum code to explain my case:
import threading
import time
import eventlet
eventlet.monkey_patch()
def printing_function():
while True:
# here i want to do some work
...
2
votes
1answer
91 views
python greenlet segmentation fault
I use ubuntu 11.10 with Python 2.7.2
I try to use eventlet or Concurrence, but simple examples fails with "segmentation fault"
I read this is a greenlet problem, but don't know how to fix this? plese ...
2
votes
5answers
109 views
What happends when a single request takes a long time with these non-blocking io servers?
With nodejs, or eventlet or any other non-blocking server, what happens when a given request takes long, does it then block all other requests?
Example, a request comes in, and takes 200ms to ...
2
votes
1answer
163 views
Can eventlet manage an AMQP connection with messages passing asynchronously both in and out?
Actual Design:
For those returning to this question, the helpful answer below pushed me towards a workable design that is running fine. Three insights were key:
Eventlet is a very safe environment ...
2
votes
3answers
673 views
ab is erroring out with apr_socket_recv: Connection refused (61)
I am testing eventlet out, and I am getting this error:
~>ab -n 10 -c 1 http://localhost:8090/
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus ...
2
votes
2answers
303 views
Would puka work well with gevent or eventlet?
I was reading about the newer Python AMQP library Puka (not to be confused with Pika) and was wondering if the way it handles it's event loop would be compatible with gevent or eventlet. Based on my ...
2
votes
2answers
181 views
Eventlet and Python daemon, Foo not called?
I am trying to build a Python deamon which listen to a queue (Redis Kombu).
Grab the task and spawn a greenthread to process this task.
I can receive the task and consume it without trouble but when ...
2
votes
1answer
377 views
Lots of socket errors with celery eventlet tasks
I'm getting a lot of "IOError: Socket closed" exceptions from amqplib.client_0_8.method_framing.read_method when running my celery workers with the --pool=eventlet option. I'm also seeing a lot of ...
2
votes
1answer
520 views
Can I make Django “greenlet-safe”?
The big picture is:
I want to use eventlet in some application that does asynchronous IO while working with Django models externally. Working with Django externally is simple (see Django: How can I ...
1
vote
1answer
77 views
Python consumes 99% of CPU running eventlet
I have posted to the python and eventlet mailing list already so I apologize if I seem impatient.
I am running eventlet 0.9.16 on a Small (not micro) reserved ubuntu 11.10 aws instance.
I have a ...
1
vote
2answers
55 views
pyftpdlib slow .read on file blocks entire mainloop
Helllo,
I am using a custom AbstractFS on pyftpdlib that maps files on a HTTP server to FTP.
This files are returned by my implementation of open (of AbstractFS) which returns a httplib.HTTPResponse ...
1
vote
1answer
157 views
Using eventlet with SQLAlchemy
I'm using eventlet to build a simple website crawler starting from this example.
I would like to use SQLAlchemy to store web pages' content and metadata for further processing. It's possible to use ...
1
vote
1answer
390 views
How to stop a coroutines / thread in Python eventlet
When I use the eventlet package to run a multi-coroutines task, even when the coroutines pool is empty, the program won't continue to run, but will get stuck in a loop. Following is my code and the ...
1
vote
1answer
364 views
Running eventlet server in bottle framework
i see something like this in bottle.py version 0.9. Does that means. i can run bottle server as a eventlet server.
class EventletServer(ServerAdapter):
""" Untested """
def run(self, handler):
...
1
vote
1answer
202 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
...
1
vote
1answer
173 views
What is wrong with this code?
I'm using the code below to slug the link to a couchDb instance, so I can test what happens to the GUI if the database is slow.
# coding=utf8 slowCoach.py - a server that delays every message
# ...
1
vote
0answers
178 views
Eventlet throwing unintelligble exceptions
I'm using Eventlet's example code found here: http://eventlet.net/doc/examples.html#producer-consumer-recursive-web-crawler
Halfway through the run, I encounter multiple instances of the following:
...
0
votes
0answers
27 views
Python, Eventlet, Concurrent Networking
I am starting off using the eventlet concurrent networking module for Python and i am currently having some issues regarding my code. I am trying to fetch data from multiple servers in parallel. ...
0
votes
1answer
48 views
Can I call functions or change variables throught eventlet.backdoor in Python?
I wrote this minimal code to explain my case:
import threading
import time
import eventlet
from eventlet import backdoor
eventlet.monkey_patch()
global should_printing
should_printing = True
def ...
0
votes
0answers
34 views
NoMoreData exception when using couchdbkit with gunicorn and eventlet
Hope someone might be able to shed some light on this issue I'm having.
I am using couchdbkit in a pyramid webapp. My server is gunicorn with eventlet workers.
I am using the eventlet manager for ...
0
votes
0answers
84 views
Unterstanding eventlet.wsgi.server
I have this simple Python programm:
from eventlet import wsgi
import eventlet
from eventlet.green import time
def hello_world(env, start_response):
print "got request"
time.sleep(10)
...
0
votes
1answer
46 views
Eventlets and SMTP
I would like to multithread sending mail (using django's SMTPConnection or perhaps the smtplib module). I was hoping there was a module similar to urllib2 where I can:
import eventlet
from ...
0
votes
1answer
147 views
Obtaining Client IP address from a WSGI app using Eventlet
I'm currently writing a basic dispatch model server based on the Python Eventlet library (http://eventlet.net/doc/). Having looked at the WSGI docs on Eventlet ...
0
votes
0answers
38 views
Eventlet import_patched using custom library
I am aware that import_patched is for custom libraries, my question however is can I import a library that is not included in sys.modules? For instance I have a suds library that I have modified and I ...
0
votes
0answers
145 views
python AsyncIO for UDP send/receive server?
Can someone recommend a framework that uses python & eventlet to handle a simple but fast UDP receive/ack server?
Note: I don't want to use twisted.
0
votes
0answers
162 views
Is there a way to connect to Eventlet via the WebSocket implementation in Firefox 6?
I can't seem to connect to an Eventlet server using the updated WebSocket implementation in Firefox 6 (MozWebSocket). The older implementation that was disabled by default would work fine as long as ...
0
votes
2answers
128 views
Defer processing in Python
I'm trying to write events in a non-blocking fashion so as not to slow down any of our existing processes. It seems like the two options available are:
use Twisted's defer object
create a python ...
0
votes
0answers
320 views
python2.7: eventlet, urllib2 - usage clarification
I need to donwload concurrently, this code works, but doesn't go concurrently, what am i missing?
#coding: utf8
import time, os, eventlet, StringIO, gzip
from eventlet.green import urllib2
def ...
0
votes
0answers
139 views
how to replicate bottle's route in evenlet
I am using bottle to do routing like this. I want to do something similar to this using eventlet.Any ideas?
from bottle import route, run
@route('/:name')
def index(name='World'):
...
0
votes
2answers
124 views
resources on eventlet
hi
i am actually working on a project which needs realtime updates so we are using eventlet for that so can u guys refer to resources to read about eventlet given the fact that i have no
previous ...