2

我正在尝试构建一个侦听队列(Redis Kombu)的 Python 守护程序。抓取任务并生成一个绿色线程来处理此任务。

我可以毫无问题地接收任务并使用它,但是当我尝试使用 eventlet 生成 GreenThread 时,它似乎根本没有做任何事情。

不打印,不显示日志记录。

class agent(Daemon):
    """
    Agent
    """
    def run(self):  
        # Setup connection
        mainLogger.debug('Connecting to Redis')
        connection = BrokerConnection(
                        hostname=agentConfig['redis_host'],
                        transport="redis",
                        virtual_host=agentConfig['redis_db'],
                        port=int(agentConfig['redis_port']))
        connection.connect()

        # Create an eventlet pool of size 5
        pool = eventlet.GreenPool(5)
        q = connection.SimpleQueue("myq")
        while True:
            try:
               message = q.get(block=True, timeout=1)
               print "GOT A MESSAGE FROM Q !"
               pool.spawn_n(self.foo, 'x')
               print "END SPAWN !"
            except Empty:
               mainLogger.debug('No tasks, going to sleep')
               time.sleep(1)


    def foo(self, x):
        mainLogger.debug('\o/')
        print "HELLO FROM SPAWN"

有什么我做错了吗?

4

2 回答 2

3

我需要调用 eventlet.monkey_patch() 来调用 sleep() 来触发上下文切换。

于 2011-07-06T13:10:41.930 回答
2

您只需要eventlet.sleep按照此处所述使用:

http://eventlet.net/doc/basic_usage.html#eventlet.sleep

于 2011-12-07T20:40:47.493 回答