Python Web 部署是 uWSGI 还是 gunicorn 更优?

本贴最后更新于 3302 天前,其中的信息可能已经时移俗易

Python 的部署是个问题。

  • Python

    Python 是一种面向对象、直译式电脑编程语言,具有近二十年的发展历史,成熟且稳定。它包含了一组完善而且容易理解的标准库,能够轻松完成很多常见的任务。它的语法简捷和清晰,尽量使用无异义的英语单词,与其它大多数程序设计语言使用大括号不一样,它使用缩进来定义语句块。

    556 引用 • 675 回帖
  • uWSGI
    7 引用 • 62 回帖
  • Gunicorn
    3 引用 • 21 回帖

相关帖子

欢迎来到这里!

我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。

注册 关于
请输入回帖内容 ...
  • 88250

    不知道....不会 [Python]

  • zonghua
    作者
    vi ~/.pip/pip.conf [global] index-url = http://pypi.tuna.tsinghua.edu.cn/simple # 或者 http://pypi.douban.com/simple 豆瓣
  • zonghua
    作者
    # 安装 lxml ,依赖啊依赖 $sudo apt-get install libxml2-dev libxslt-dev python2.7-dev $sudo pip install lxml
  • onlyice

    Gunicorn 看起来很简单直观,uWSGI 还没研究过。。

    不过就算用 Gunicorn,也要有个 nginx 搭配。

  • zonghua
    作者

    @onlyice Gunicorn 实际上启动的是 python 自己的 Http 服务?而 WSGI 是另外的基于 socket 的协议

  • zonghua
    作者

    使用测试服务器
    ./manage.py runserver
    Server Software: nginx/1.8.1
    Server Hostname: localhost
    Server Port: 80

    Document Path: / Document Length: 1767 bytes Concurrency Level: 100 Time taken for tests: 28.410 seconds Complete requests: 10000 Failed requests: 206 (Connect: 0, Receive: 0, Length: 206, Exceptions: 0) Non-2xx responses: 206 Total transferred: 18841636 bytes HTML transferred: 17341430 bytes Requests per second: 351.99 [#/sec] (mean) Time per request: 284.096 [ms] (mean) Time per request: 2.841 [ms] (mean, across all concurrent requests) Transfer rate: 647.67 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 0 0.8 0 10 Processing: 19 271 858.4 35 15029 Waiting: 19 271 858.3 35 15029 Total: 27 271 858.8 35 15029 Percentage of the requests served within a certain time (ms) 50% 35 66% 36 75% 37 80% 38 90% 1033 95% 1038 98% 4271 99% 4276 100% 15029 (longest request)
  • zonghua
    作者

    使用 gunicorn

    Document Path: / Document Length: 1767 bytes Concurrency Level: 100 Time taken for tests: 20.769 seconds Complete requests: 10000 Failed requests: 0 Total transferred: 19170000 bytes HTML transferred: 17670000 bytes Requests per second: 481.49 [#/sec] (mean) Time per request: 207.690 [ms] (mean) Time per request: 2.077 [ms] (mean, across all concurrent requests) Transfer rate: 901.38 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 0 0.9 0 10 Processing: 7 207 13.2 208 225 Waiting: 5 207 13.2 208 225 Total: 13 207 12.5 208 225 Percentage of the requests served within a certain time (ms) 50% 208 66% 210 75% 212 80% 213 90% 216 95% 218 98% 221 99% 222 100% 225 (longest request)
  • zonghua
    作者

    使用 gunicorn -w 2
    Document Path: /
    Document Length: 1767 bytes

    Concurrency Level: 100 Time taken for tests: 20.704 seconds Complete requests: 10000 Failed requests: 0 Total transferred: 19170000 bytes HTML transferred: 17670000 bytes Requests per second: 483.00 [#/sec] (mean) Time per request: 207.041 [ms] (mean) Time per request: 2.070 [ms] (mean, across all concurrent requests) Transfer rate: 904.20 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 0 1.0 0 11 Processing: 8 206 13.1 207 247 Waiting: 6 206 13.1 207 247 Total: 14 206 12.4 207 247 Percentage of the requests served within a certain time (ms) 50% 207 66% 209 75% 211 80% 212 90% 216 95% 218 98% 220 99% 221 100% 247 (longest request)
  • zonghua
    作者

    使用 gunicorn -w 4

    Document Path: / Document Length: 1767 bytes Concurrency Level: 100 Time taken for tests: 20.554 seconds Complete requests: 10000 Failed requests: 0 Total transferred: 19170000 bytes HTML transferred: 17670000 bytes Requests per second: 486.53 [#/sec] (mean) Time per request: 205.537 [ms] (mean) Time per request: 2.055 [ms] (mean, across all concurrent requests) Transfer rate: 910.82 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 0 0.9 0 11 Processing: 8 204 13.7 205 243 Waiting: 5 204 13.7 205 243 Total: 13 205 13.0 205 243 Percentage of the requests served within a certain time (ms) 50% 205 66% 208 75% 210 80% 212 90% 216 95% 220 98% 224 99% 228 100% 243 (longest request)
  • zonghua
    作者

    貌似开多个进程都没有用

  • zonghua
    作者

    使用 uwsgi --http :8000 --module project.wsgi

    Document Path: / Document Length: 1767 bytes Concurrency Level: 100 Time taken for tests: 22.060 seconds Complete requests: 10000 Failed requests: 0 Total transferred: 19170000 bytes HTML transferred: 17670000 bytes Requests per second: 453.30 [#/sec] (mean) Time per request: 220.604 [ms] (mean) Time per request: 2.206 [ms] (mean, across all concurrent requests) Transfer rate: 848.61 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 0 0.9 0 11 Processing: 8 219 13.3 221 241 Waiting: 5 219 13.4 221 241 Total: 13 220 12.6 221 241 Percentage of the requests served within a certain time (ms) 50% 221 66% 223 75% 224 80% 225 90% 227 95% 229 98% 234 99% 237 100% 241 (longest request)
  • zonghua
    作者

    使用 uwsgi --sock 127.0.0.1:8001 --max_process 2

    Document Path: / Document Length: 1767 bytes Concurrency Level: 100 Time taken for tests: 18.602 seconds Complete requests: 10000 Failed requests: 0 Total transferred: 19320000 bytes HTML transferred: 17670000 bytes Requests per second: 537.59 [#/sec] (mean) Time per request: 186.015 [ms] (mean) Time per request: 1.860 [ms] (mean, across all concurrent requests) Transfer rate: 1014.28 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 0 1.0 0 11 Processing: 8 185 11.7 185 201 Waiting: 5 185 11.7 185 201 Total: 13 185 11.0 185 202 Percentage of the requests served within a certain time (ms) 50% 185 66% 189 75% 191 80% 192 90% 194 95% 196 98% 198 99% 199 100% 202 (longest request)
  • zonghua
    作者

    看来是 uwsgi 最快

  • onlyice

    @zonghua 难以一两句话说清楚,可以参考下我之前写的帖子:
    https://plus.google.com/+ZhihengLin/posts/KJYNhtbeKLE

    测试很棒

  • zonghua
    作者

    @onlyice 网络的话除了 Http 的东西我都看不懂了

请输入回帖内容 ...

推荐标签 标签

  • Redis

    Redis 是一个开源的使用 ANSI C 语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value 数据库,并提供多种语言的 API。从 2010 年 3 月 15 日起,Redis 的开发工作由 VMware 主持。从 2013 年 5 月开始,Redis 的开发由 Pivotal 赞助。

    286 引用 • 248 回帖 • 13 关注
  • Kotlin

    Kotlin 是一种在 Java 虚拟机上运行的静态类型编程语言,由 JetBrains 设计开发并开源。Kotlin 可以编译成 Java 字节码,也可以编译成 JavaScript,方便在没有 JVM 的设备上运行。在 Google I/O 2017 中,Google 宣布 Kotlin 成为 Android 官方开发语言。

    19 引用 • 33 回帖 • 76 关注
  • Swagger

    Swagger 是一款非常流行的 API 开发工具,它遵循 OpenAPI Specification(这是一种通用的、和编程语言无关的 API 描述规范)。Swagger 贯穿整个 API 生命周期,如 API 的设计、编写文档、测试和部署。

    26 引用 • 35 回帖 • 3 关注
  • 微软

    微软是一家美国跨国科技公司,也是世界 PC 软件开发的先导,由比尔·盖茨与保罗·艾伦创办于 1975 年,公司总部设立在华盛顿州的雷德蒙德(Redmond,邻近西雅图)。以研发、制造、授权和提供广泛的电脑软件服务业务为主。

    8 引用 • 44 回帖
  • webpack

    webpack 是一个用于前端开发的模块加载器和打包工具,它能把各种资源,例如 JS、CSS(less/sass)、图片等都作为模块来使用和处理。

    41 引用 • 130 回帖 • 250 关注
  • SEO

    发布对别人有帮助的原创内容是最好的 SEO 方式。

    35 引用 • 200 回帖 • 20 关注
  • V2EX

    V2EX 是创意工作者们的社区。这里目前汇聚了超过 400,000 名主要来自互联网行业、游戏行业和媒体行业的创意工作者。V2EX 希望能够成为创意工作者们的生活和事业的一部分。

    16 引用 • 236 回帖 • 269 关注
  • Angular

    AngularAngularJS 的新版本。

    26 引用 • 66 回帖 • 543 关注
  • Typecho

    Typecho 是一款博客程序,它在 GPLv2 许可证下发行,基于 PHP 构建,可以运行在各种平台上,支持多种数据库(MySQL、PostgreSQL、SQLite)。

    12 引用 • 67 回帖 • 445 关注
  • ReactiveX

    ReactiveX 是一个专注于异步编程与控制可观察数据(或者事件)流的 API。它组合了观察者模式,迭代器模式和函数式编程的优秀思想。

    1 引用 • 2 回帖 • 176 关注
  • ZeroNet

    ZeroNet 是一个基于比特币加密技术和 BT 网络技术的去中心化的、开放开源的网络和交流系统。

    1 引用 • 21 回帖 • 639 关注
  • Follow
    4 引用 • 12 回帖 • 9 关注
  • C

    C 语言是一门通用计算机编程语言,应用广泛。C 语言的设计目标是提供一种能以简易的方式编译、处理低级存储器、产生少量的机器码以及不需要任何运行环境支持便能运行的编程语言。

    85 引用 • 165 回帖 • 1 关注
  • InfluxDB

    InfluxDB 是一个开源的没有外部依赖的时间序列数据库。适用于记录度量,事件及实时分析。

    2 引用 • 87 关注
  • 设计模式

    设计模式(Design pattern)代表了最佳的实践,通常被有经验的面向对象的软件开发人员所采用。设计模式是软件开发人员在软件开发过程中面临的一般问题的解决方案。这些解决方案是众多软件开发人员经过相当长的一段时间的试验和错误总结出来的。

    200 引用 • 120 回帖
  • RYMCU

    RYMCU 致力于打造一个即严谨又活泼、专业又不失有趣,为数百万人服务的开源嵌入式知识学习交流平台。

    4 引用 • 6 回帖 • 53 关注
  • Excel
    31 引用 • 28 回帖
  • 尊园地产

    昆明尊园房地产经纪有限公司,即:Kunming Zunyuan Property Agency Company Limited(简称“尊园地产”)于 2007 年 6 月开始筹备,2007 年 8 月 18 日正式成立,注册资本 200 万元,公司性质为股份经纪有限公司,主营业务为:代租、代售、代办产权过户、办理银行按揭、担保、抵押、评估等。

    1 引用 • 22 回帖 • 783 关注
  • SSL

    SSL(Secure Sockets Layer 安全套接层),及其继任者传输层安全(Transport Layer Security,TLS)是为网络通信提供安全及数据完整性的一种安全协议。TLS 与 SSL 在传输层对网络连接进行加密。

    70 引用 • 193 回帖 • 415 关注
  • Solo

    Solo 是一款小而美的开源博客系统,专为程序员设计。Solo 有着非常活跃的社区,可将文章作为帖子推送到社区,来自社区的回帖将作为博客评论进行联动(具体细节请浏览 B3log 构思 - 分布式社区网络)。

    这是一种全新的网络社区体验,让热爱记录和分享的你不再感到孤单!

    1440 引用 • 10067 回帖 • 493 关注
  • NetBeans

    NetBeans 是一个始于 1997 年的 Xelfi 计划,本身是捷克布拉格查理大学的数学及物理学院的学生计划。此计划延伸而成立了一家公司进而发展这个商用版本的 NetBeans IDE,直到 1999 年 Sun 买下此公司。Sun 于次年(2000 年)六月将 NetBeans IDE 开源,直到现在 NetBeans 的社群依然持续增长。

    78 引用 • 102 回帖 • 702 关注
  • Postman

    Postman 是一款简单好用的 HTTP API 调试工具。

    4 引用 • 3 回帖 • 1 关注
  • WordPress

    WordPress 是一个使用 PHP 语言开发的博客平台,用户可以在支持 PHP 和 MySQL 数据库的服务器上架设自己的博客。也可以把 WordPress 当作一个内容管理系统(CMS)来使用。WordPress 是一个免费的开源项目,在 GNU 通用公共许可证(GPLv2)下授权发布。

    66 引用 • 114 回帖 • 198 关注
  • 宕机

    宕机,多指一些网站、游戏、网络应用等服务器一种区别于正常运行的状态,也叫“Down 机”、“当机”或“死机”。宕机状态不仅仅是指服务器“挂掉了”、“死机了”状态,也包括服务器假死、停用、关闭等一些原因而导致出现的不能够正常运行的状态。

    13 引用 • 82 回帖 • 84 关注
  • Lute

    Lute 是一款结构化的 Markdown 引擎,支持 Go 和 JavaScript。

    28 引用 • 197 回帖 • 26 关注
  • Access
    1 引用 • 3 回帖 • 4 关注
  • Eclipse

    Eclipse 是一个开放源代码的、基于 Java 的可扩展开发平台。就其本身而言,它只是一个框架和一组服务,用于通过插件组件构建开发环境。

    76 引用 • 258 回帖 • 630 关注