V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
cheesea
V2EX  ›  Python

gunicorn 和 celery 都使用 gevent worker, celery task 是否需要自己手动 monkey patch?

  •  
  •   cheesea · 2020-11-01 15:22:54 +08:00 · 1744 次点击
    这是一个创建于 1273 天前的主题,其中的信息可能已经有所发展或是发生改变。

    gunicorn 在启动 worker 的时候会调用 monkey_patch,这个 patch 会影响到 celery task 的代码吗? 还是说在 task 里面我需要自己再 patch 一下?

    2 条回复    2020-11-01 16:04:18 +08:00
    cheesea
        1
    cheesea  
    OP
       2020-11-01 15:42:39 +08:00
    按我的理解,celery 执行任务的时候,依赖于本地代码,发送到 broker 的只是本地代码的路径,执行任务时,并没有运行 gunicorn 。那么比如我在 task 里调用 requests.post,其实是阻塞的。
    cheesea
        2
    cheesea  
    OP
       2020-11-01 16:04:18 +08:00   ❤️ 1
    自问自答,在 celery 文档里找到的:
    You must use the -P option to celery worker instead, to ensure the monkey patches aren’t applied too late, causing things to break in strange ways.
    我自己试验了一下,确实不用自己再手动 patch 了
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2687 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 15:29 · PVG 23:29 · LAX 08:29 · JFK 11:29
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.