推荐学习书目
› 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 · Feb 9, 2013 · 9069 views
    This topic created in 4978 days ago, the information mentioned may be changed or developed.
    "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 replies  •  1970-01-01 08:00:00 +08:00
    lix
        1
    lix  
       Feb 18, 2013 via Android
    程序的问题,有异常出现
    liuxurong
        2
    liuxurong  
    OP
       Feb 18, 2013
    @lix 排查过了。基本解决。不能将pymysql用在生产环境。用python-memcache也要注意。都是效率好低的。
    yinian1992
        3
    yinian1992  
       Feb 18, 2013
    @liuxurong 你试试用 gevent 去 monkey patch 一下 socket。
    ipconfiger
        4
    ipconfiger  
       Feb 18, 2013
    去看看mysql的慢查询日志才是正道,大部分的超时问题都是慢查询导致的
    CMGS
        5
    CMGS  
       Feb 18, 2013   ❤️ 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
       Feb 19, 2013
    @CMGS
    @ipconfiger
    @yinian1992 谢谢各位。
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Privacy   ·   Solana   ·   881 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 28ms · UTC 22:14 · PVG 06:14 · LAX 15:14 · JFK 18:14
    ♥ Do have faith in what you're doing.