使用 socketIO 和 eventlet 的 Flask Response 会导致响应丢失?
Flask Response with socketIO and eventlet leads to dropped responses?
我正在试验在 Miguel 关于使用 Flask 流式传输 jpg 图像的教程中找到的代码。 part1 part2
我尝试将 socketIO 添加到示例中。但我发现即使使用猴子补丁也会导致严重滞后。我将问题归结为下面这个简短的例子。如果我启动 socketio
实例,那么我会在终端中看到生成器定期提供连续的帧,但在浏览器中大约每隔两张图像就会显示一次。如果我使用 app.run(...)
那么一切正常。使用 socketio
和 async_mode="threading"
也可以修复流式传输。
我错过了什么?
templates/index.html
<html>
<head>
<title>Video Streaming Demonstration</title>
</head>
<body>
<h1>Video Streaming Demonstration</h1>
<img src="{{ url_for('video_feed') }}">
</body>
</html>
app_experient.py
import eventlet
eventlet.monkey_patch()
from importlib import import_module
import os
from flask import Flask, render_template, Response
import time
print("is_monkey_patched(time):", eventlet.patcher.is_monkey_patched(time))
from flask_socketio import SocketIO
app = Flask(__name__)
socketio = SocketIO(app)#, async_mode="threading")
@app.route('/')
def index():
"""Video streaming home page."""
return render_template('index.html')
def gen():
"""Video streaming generator function."""
imgs = [open(f + '.jpg', 'rb').read() for f in ['1', '2', '3', '4', '5', '6', '7']]
while True:
time.sleep(1)
i = int(time.time()) % 7
frame = imgs[i]
print("gen yielding", i)
yield (b'--frame\r\n'
b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n')
@app.route('/video_feed')
def video_feed():
"""Video streaming route. Put this in the src attribute of an img tag."""
return Response(gen(),
mimetype='multipart/x-mixed-replace; boundary=frame')
if __name__ == '__main__':
# app.run(host='0.0.0.0', threaded=True)#, debug=True)
socketio.run(app, host='0.0.0.0')#, debug=True)
我不确定问题出在哪里,但似乎与 eventlet 网络服务器的使用有某种关系。切换到 Gunicorn 自带的 eventlet worker 似乎可以解决问题。
我首先安装了 Gunicorn:
pip install gunicorn
然后开始你的应用程序如下:
gunicorn -b :5000 -k eventlet app_experiment:app
我正在试验在 Miguel 关于使用 Flask 流式传输 jpg 图像的教程中找到的代码。 part1 part2
我尝试将 socketIO 添加到示例中。但我发现即使使用猴子补丁也会导致严重滞后。我将问题归结为下面这个简短的例子。如果我启动 socketio
实例,那么我会在终端中看到生成器定期提供连续的帧,但在浏览器中大约每隔两张图像就会显示一次。如果我使用 app.run(...)
那么一切正常。使用 socketio
和 async_mode="threading"
也可以修复流式传输。
我错过了什么?
templates/index.html
<html>
<head>
<title>Video Streaming Demonstration</title>
</head>
<body>
<h1>Video Streaming Demonstration</h1>
<img src="{{ url_for('video_feed') }}">
</body>
</html>
app_experient.py
import eventlet
eventlet.monkey_patch()
from importlib import import_module
import os
from flask import Flask, render_template, Response
import time
print("is_monkey_patched(time):", eventlet.patcher.is_monkey_patched(time))
from flask_socketio import SocketIO
app = Flask(__name__)
socketio = SocketIO(app)#, async_mode="threading")
@app.route('/')
def index():
"""Video streaming home page."""
return render_template('index.html')
def gen():
"""Video streaming generator function."""
imgs = [open(f + '.jpg', 'rb').read() for f in ['1', '2', '3', '4', '5', '6', '7']]
while True:
time.sleep(1)
i = int(time.time()) % 7
frame = imgs[i]
print("gen yielding", i)
yield (b'--frame\r\n'
b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n')
@app.route('/video_feed')
def video_feed():
"""Video streaming route. Put this in the src attribute of an img tag."""
return Response(gen(),
mimetype='multipart/x-mixed-replace; boundary=frame')
if __name__ == '__main__':
# app.run(host='0.0.0.0', threaded=True)#, debug=True)
socketio.run(app, host='0.0.0.0')#, debug=True)
我不确定问题出在哪里,但似乎与 eventlet 网络服务器的使用有某种关系。切换到 Gunicorn 自带的 eventlet worker 似乎可以解决问题。
我首先安装了 Gunicorn:
pip install gunicorn
然后开始你的应用程序如下:
gunicorn -b :5000 -k eventlet app_experiment:app