首页 > Python资料 博客日记
[python]使用gunicorn部署fastapi服务
2024-08-05 23:00:04Python资料围观71次
这篇文章介绍了[python]使用gunicorn部署fastapi服务,分享给大家做个参考,收藏Python资料网收获更多编程知识
前言
Gunicorn是一种流行的WSGI HTTP服务器,常用于部署Django和Flask等Python Web框架程序。Gunicorn具有轻量级、高稳定性和高性能等特性,可以轻易提高Python WSGI App运行时的性能。
基本原理
Gunicorn采用了pre-fork模型,也就是一个工作进程和多个worker进程的工作模式。在这个模型中,master进程负责接收并处理外部的连接请求,并将这些请求分配给多个worker进程来处理。
当一个gunicorn服务启动时,master进程会首先创建多个worker工作进程,并将它们初始化为一个无限循环的状态,确保worker进程可以不断地等待接收新请求。当一个请求进来,master会将该请求分发给其中一个worker进程。不同的请求分发到不同的worker进程,可以有效提高请求的响应速度和并发处理能力。当某个worker进程崩溃或异常终止时,master进程会自动重新启动一个新的worker工作进程。
安装
pip install gunicorn
示例
首先编写一个简单的服务,请求响应一个字符串"ok",代码文件名为demo1.py
from fastapi import FastAPI
import uvicorn
from fastapi.responses import PlainTextResponse
app = FastAPI()
@app.get("/")
async def root():
return PlainTextResponse("ok")
if __name__ == "__main__":
uvicorn.run(app=app, host="0.0.0.0", port=8000, access_log=False)
正常启动,然后使用wrk测试。使用uvicorn的qps为11733.60
$ ps -ef | grep demo1
atlas 2449 1162 44 22:06 pts/0 00:01:11 python demo1.py
atlas 2478 2462 0 22:08 pts/6 00:00:00 grep demo1
$ wrk -t2 -c 100 -d 60s http://127.0.0.1:8000
Running 1m test @ http://127.0.0.1:8000
2 threads and 100 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 8.59ms 4.36ms 276.86ms 91.44%
Req/Sec 5.90k 520.55 7.84k 68.54%
704720 requests in 1.00m, 90.73MB read
Requests/sec: 11733.60
Transfer/sec: 1.51MB
使用gunicorn启动。wrk的测试结果:QPS为25859.47,性能直接提升120%
$ gunicorn demo1:app -b 127.0.0.1:8000 -w 4 -k uvicorn.workers.UvicornWorker
$ ps -ef | grep demo1
atlas 2640 1162 0 22:12 pts/0 00:00:00 /home/atlas/workspace/fastapi-study/bin/python3 /home/atlas/workspace/fastapi-study/bin/gunicorn demo1:app -b 127.0.0.1:8000 -w 4 -k uvicorn.workers.UvicornWorker
atlas 2641 2640 8 22:12 pts/0 00:00:40 /home/atlas/workspace/fastapi-study/bin/python3 /home/atlas/workspace/fastapi-study/bin/gunicorn demo1:app -b 127.0.0.1:8000 -w 4 -k uvicorn.workers.UvicornWorker
atlas 2642 2640 8 22:12 pts/0 00:00:40 /home/atlas/workspace/fastapi-study/bin/python3 /home/atlas/workspace/fastapi-study/bin/gunicorn demo1:app -b 127.0.0.1:8000 -w 4 -k uvicorn.workers.UvicornWorker
atlas 2645 2640 10 22:12 pts/0 00:00:47 /home/atlas/workspace/fastapi-study/bin/python3 /home/atlas/workspace/fastapi-study/bin/gunicorn demo1:app -b 127.0.0.1:8000 -w 4 -k uvicorn.workers.UvicornWorker
atlas 2646 2640 11 22:12 pts/0 00:00:52 /home/atlas/workspace/fastapi-study/bin/python3 /home/atlas/workspace/fastapi-study/bin/gunicorn demo1:app -b 127.0.0.1:8000 -w 4 -k uvicorn.workers.UvicornWorker
atlas 2665 2462 0 22:20 pts/6 00:00:00 grep demo1
$ wrk -t2 -c 100 -d 60s http://127.0.0.1:8000
Running 1m test @ http://127.0.0.1:8000
2 threads and 100 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 4.13ms 3.38ms 112.09ms 88.85%
Req/Sec 13.00k 1.44k 19.86k 71.58%
1554274 requests in 1.00m, 200.11MB read
Requests/sec: 25859.47
Transfer/sec: 3.33MB
版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!
标签:
相关文章
最新发布
- 【Python】selenium安装+Microsoft Edge驱动器下载配置流程
- Python 中自动打开网页并点击[自动化脚本],Selenium
- Anaconda基础使用
- 【Python】成功解决 TypeError: ‘<‘ not supported between instances of ‘str’ and ‘int’
- manim边学边做--三维的点和线
- CPython是最常用的Python解释器之一,也是Python官方实现。它是用C语言编写的,旨在提供一个高效且易于使用的Python解释器。
- Anaconda安装配置Jupyter(2024最新版)
- Python中读取Excel最快的几种方法!
- Python某城市美食商家爬虫数据可视化分析和推荐查询系统毕业设计论文开题报告
- 如何使用 Python 批量检测和转换 JSONL 文件编码为 UTF-8
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python与PyTorch的版本对应
- Anaconda版本和Python版本对应关系(持续更新...)
- Python pyinstaller打包exe最完整教程
- Could not build wheels for llama-cpp-python, which is required to install pyproject.toml-based proj