celery eventlet 任务出现很多套接字错误

发布于 2024-11-16 13:39:17 字数 508 浏览 3 评论 0原文

当使用 --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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨与橙与城 2024-11-23 13:39:17

问题是某些阻塞代码的副作用。我设法使用描述的 eventlet 选项检测到阻止代码 在本文中

有 2 个地方发生了阻塞:DNS 查找和 MySQL 数据库访问。我设法通过安装 dnspython 包解决了第一个问题,第二个问题是我在 eventlet 中使用了未记录的 MySQLdb 选项:

import eventlet
eventlet.monkey_patch()
eventlet.monkey_patch(MySQLdb=True)

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:

import eventlet
eventlet.monkey_patch()
eventlet.monkey_patch(MySQLdb=True)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文