是否可以使用Gunicorn在一个(Flask)应用程序中一起处理WebSockets和常规WSGI视图?
我知道如何使用Gevent WSGI服务器使websockets工作,我可以使用gevent worker获得与Gunicorn一起运行的常规WSGI应用程序,但是当我尝试使用Gunicorn从一个应用程序一起服务这两个时,我得到了一个错误:
ValueError:View函数未返回响应
是否有可能使用gunicorn从一个应用程序服务这两个?我计划最终将这一切都放在nginx之后,而且我不反对将套接字分成另一个应用程序并让两者进行通信,只要这不需要太多额外的系统资源。在那之前,有没有办法这样做?
编辑:
我想出了如何让它发挥作用。关键是1)更改gevent的日志记录功能和2)确保指定gunicorn我正在使用geventWebSocketWorker类worker。
我在此网站上找到了此答案的一部分:http://d.hatena.ne.jp/Malan/20121007
为了记录,我认为让一台服务器运行龙卷风/ 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