celery eventlet 任务出现很多套接字错误
当使用 --pool=eventlet 选项运行我的 celery 工作程序时,我从 amqplib.client_0_8.method_framing.read_method 收到很多“IOError:套接字已关闭”异常。我还看到 eventlet.hubs.hub.switch 出现很多超时异常。
我使用的 async_manage.py 脚本类似于 https://gist.github.com/821848,运行如下:
./async_manage.py celeryd_detach -E --pool=eventlet --concurrency=120 --logfile=<path>
这是一个已知问题,还是我的配置或设置有问题?
我正在运行 djcelery 2.2.4、Django 1.3 和 eventlet 0.9.15。
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 timeout exceptions from eventlet.hubs.hub.switch.
I'm using an async_manage.py script similar to the one at https://gist.github.com/821848, running the works like:
./async_manage.py celeryd_detach -E --pool=eventlet --concurrency=120 --logfile=<path>
Is this a known issue, or is there something wrong with my configuration or setup?
I'm running djcelery 2.2.4, Django 1.3, and eventlet 0.9.15.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是某些阻塞代码的副作用。我设法使用描述的 eventlet 选项检测到阻止代码 在本文中。
有 2 个地方发生了阻塞:DNS 查找和 MySQL 数据库访问。我设法通过安装 dnspython 包解决了第一个问题,第二个问题是我在 eventlet 中使用了未记录的 MySQLdb 选项:
The problem was a side effect of some code that was blocking. I managed to detect the blocking code using the eventlet option described in this article.
There were 2 places where blocking was occuring: DNS lookups, and MySQL database access. I managed to resolve the first by installing the dnspython package, and the second my using the undocumented MySQLdb option in eventlet: