是否可以使用 Gunicorn 在一个(Flask)应用程序中同时处理 WebSockets 和常规 WSGI 视图?
我知道如何使用 Gevent WSGI 服务器让 websockets 工作,并且我可以使用 Gunicorn 和 gevent 工作人员运行一个常规的 WSGI 应用程序,但是当我尝试使用 Gunicorn 从一个应用程序同时为这两者提供服务时,我得到一个错误:
ValueError:查看函数没有返回响应
是否可以使用 gunicorn 从一个应用程序中为两者提供服务?我计划最终将这一切都放在 nginx 之后,我不反对将套接字拆分为另一个应用程序并让两者进行通信,只要这不需要太多额外的系统资源。在那之前,有没有办法做到这一点?
编辑:
我想出了如何让这个工作。关键是 1) 更改 gevent 的日志记录功能和 2) 确保向 gunicorn 指定我正在使用 geventWebSocketWorker 类工作者。
我在这个网站上找到了这个答案的一部分:http: //d.hatena.ne.jp/Malan/20121007
作为记录,我认为让一台服务器运行 tornado/twisted/autobahn(感谢 Jordan)和另一台运行我的 WSGI 东西可能是一个更好的主意。但这不是我想要的:)
def log_request(self):
log = self.server.log
if log:
if hasattr(log, "info"):
log.info(self.format_request() + '\n')
else:
log.write(self.format_request() + '\n')
import gevent
gevent.pywsgi.WSGIHandler.log_request = log_request
from geventwebsocket.handler import WebSocketHandler
from gevent.pywsgi import WSGIServer
sudo gunicorn -c gunicorn_config.py -k "geventwebsocket.gunicorn.workers.GeventWebSocketWorker" router:app