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
liuxurong
V2EX  ›  Python

频繁500错误,需要重启Gunicorn ,这是 Flask 的问题还是 Gunicorn 的问题?

  •  
  •   liuxurong · 2013-02-09 02:22:03 +08:00 · 7840 次点击
    这是一个创建于 4094 天前的主题,其中的信息可能已经有所发展或是发生改变。
    "The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application."

    这是怎么回事呢?我感觉用mysql的时候效率不好。

    Gunicorn 没有错误输出,只有这些
    """
    2013-02-08 18:11:47 [5625] [CRITICAL] WORKER TIMEOUT (pid:5632)
    2013-02-08 18:11:47 [5625] [CRITICAL] WORKER TIMEOUT (pid:5636)
    """
    6 条回复    1970-01-01 08:00:00 +08:00
    lix
        1
    lix  
       2013-02-18 06:47:40 +08:00 via Android
    程序的问题,有异常出现
    liuxurong
        2
    liuxurong  
    OP
       2013-02-18 07:38:48 +08:00
    @lix 排查过了。基本解决。不能将pymysql用在生产环境。用python-memcache也要注意。都是效率好低的。
    yinian1992
        3
    yinian1992  
       2013-02-18 11:13:25 +08:00
    @liuxurong 你试试用 gevent 去 monkey patch 一下 socket。
    ipconfiger
        4
    ipconfiger  
       2013-02-18 11:16:23 +08:00
    去看看mysql的慢查询日志才是正道,大部分的超时问题都是慢查询导致的
    CMGS
        5
    CMGS  
       2013-02-18 13:05:08 +08:00   ❤️ 1
    Gunicorn默认30秒超时,这个超时的意思是worker在30秒里面没输出。然后你这个问题得看Worker的type。sync的话,一个worker一个请求,如果用pymysql妥妥的效率被mysqldb爆出翔,python-memcache也是,如果是async如gevent,pymysql单个请求上效率还是烂,好处在于并发可以撑起来,因为MySQLdb是C层面的socket不被gevent patch。所以无论怎样,你要保证一个request在30秒以内有输出,或者增大这个时间。
    liuxurong
        6
    liuxurong  
    OP
       2013-02-19 04:09:26 +08:00
    @CMGS
    @ipconfiger
    @yinian1992 谢谢各位。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5452 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 34ms · UTC 07:41 · PVG 15:41 · LAX 00:41 · JFK 03:41
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.