同时从Rabbitmq接收日志并运行您的烧瓶应用程序

kap*_*ani 7 python multithreading rabbitmq flask rabbitmqctl

我安装了rabbitmq并正常工作,我知道如何接收日志,但不知道如何将其显示到带烧瓶的UI.

flask_app.py

from flask import Flask
from threading import Thread
app = Flask(__name__)
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
channel = connection.channel()

channel.exchange_declare(exchange='logs',
                     type='fanout')

result = channel.queue_declare(exclusive=True)
queue_name = result.method.queue

channel.queue_bind(exchange='logs',
               queue=queue_name)

print('[*] Waiting for logs. To exit press CTRL+C')
def callback(ch, method, properties, body):
    print(body)

channel.basic_consume(callback,
                      queue=queue_name,
                      no_ack=True)

thread = Thread(channel.start_consuming())
thread.start()

@app.route('/')
def index():
    return 'hi'
Run Code Online (Sandbox Code Playgroud)

我不知道如何使用多线程来运行flask应用程序并不断从队列接收日志.

ist*_*iuk 1

你的 Flask 应用程序(这里是主线程)运行一段时间或一定数量的请求,由你的 uwsgi 或你用来运行它的任何其他东西决定。当主进程停止时,很可能不是正常关闭 amqp 连接的时机。

此外,您的应用程序可能有多个实例同时运行(想想 uwsgi processes),因此您将获得每个工作进程/进程的一些日志。

这里明智的做法是将这两件事分开。在 Web 应用程序范围之外为日志运行消费者进程,即:使用supervisord。