gpt4 book ai didi

python - gunicorn + flask (connexion/swagger_server) 超时/不响应 API 请求

转载 作者:行者123 更新时间:2023-12-05 02:56:37 30 4
gpt4 key购买 nike

swagger_server connexion/flask 在我这样做时运行良好:

python3 -m swagger_server

它在端口 8080 上运行。

当我尝试将它放在 gunicorn 上时(引用:how to use gunicorn with swagger_server on flask),gunicorn 运行良好但对端口 8080 的请求失败。

首先,当我使用同一个端口 8080 时,它会提示 bind/already in use(我相信这是预期的,因为它们都在端口 8080 上):

gunicorn "swagger_server.__main__:main" -b 0.0.0.0:8080 -w 4
...
OSError: [Errno 48] Address already in use

但是当我移动到端口 4000 时,例如,请求超时:

gunicorn "swagger_server.__main__:main" -b 0.0.0.0:4000 -w 4
...
* Running on http://0.0.0.0:8080/ (Press CTRL+C to quit)
[2020-02-16 17:21:18 -0500] [34798] [CRITICAL] WORKER TIMEOUT (pid:34802)

当我启用调试时,我看到它正在尝试连接到端口 4000,而不是 8080。

[2020-02-16 17:28:13 -0500] [34866] [INFO] Starting gunicorn 20.0.4
[2020-02-16 17:28:13 -0500] [34866] [ERROR] Connection in use: ('0.0.0.0', 4000)
[2020-02-16 17:28:13 -0500] [34866] [ERROR] Retrying in 1 second.
[2020-02-16 17:28:14 -0500] [34866] [ERROR] Connection in use: ('0.0.0.0', 4000)
...

这是我的 main.py

def main(arg1, arg2):
app = connexion.App(__name__, specification_dir='./swagger_server/', debug=False)
app.app.json_encoder = encoder.JSONEncoder
app.add_api('api-v2.yaml', arguments={'title': 'API'})
app.run(host='0.0.0.0', port=8080)


if __name__ == '__main__':
main(None, None)

请告知我在这里缺少什么。谢谢。

最佳答案

Swagger 生成__main__.py 的方式不对,需要修改。

#!/usr/bin/env python3

import connexion

from swagger_server import encoder

app = connexion.App(__name__, specification_dir='./swagger/')
app.app.json_encoder = encoder.JSONEncoder
app.add_api('swagger.yaml', arguments={'title': 'My API'}, pythonic_params=True)

再试一次

gunicorn swagger_server.__main__:app 

Gunicorn 将网络请求包装在 WSGI 中并转发给 flask(werkzeug),__main__.py 中的变量 app 是 werkzeug WSGI 入口点。

关于python - gunicorn + flask (connexion/swagger_server) 超时/不响应 API 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60253813/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com