feat 新增 process lookbooks 接口

fix
This commit is contained in:
zhouchengrong
2024-10-21 11:59:37 +08:00
parent 653d2bff0f
commit 6d7254661c

View File

@@ -1,15 +1,13 @@
# 多进程
"""gunicorn+gevent 的配置文件"""
# 预加载资源
preload_app = True
# 绑定 ip + 端口
bind = "0.0.0.0:4562"
# 进程数 = cup数量 * 2 + 1
# 进程数 = cup 数量 * 2 + 1
workers = 1
# 线程数 = cup数量 * 2
# 线程数 = cup 数量 * 2
threads = 2
# 等待队列最大长度,超过这个长度的链接将被拒绝连接
@@ -18,15 +16,15 @@ backlog = 2048
# 工作模式--协程
worker_class = "uvicorn.workers.UvicornWorker"
# 最大客户客户端并发数量,对使用线程和协程的worker的工作有影响
# 服务器配置设置的值 1200中小型项目 上万并发: 中大型
# 最大客户客户端并发数量,对使用线程和协程的 worker 的工作有影响
# 服务器配置设置的值 1200中小型项目 上万并发:中大型
# 服务器硬件:宽带+数据库+内存
# 服务器的架构:集群 主从
worker_connections = 1200
# 进程名称
proc_name = 'gunicorn.pid'
# 进程pid记录文件
# 进程 pid 记录文件
pidfile = 'app_run.log'
# 日志等级
loglevel = 'info'
@@ -36,3 +34,6 @@ logfile = 'info.log'
accesslog = 'access.log'
# 访问记录格式
access_log_format = '%(h)s %(t)s %(U)s %(q)s'
# 设置超时时间为 5 分钟300 秒)
timeout = 300