使用马达连接到MongoDB时,Asyncio(Quart)投掷任务附加到另一个循环错误

时间:2019-04-24 23:44:05

标签: mongodb python-3.7 quart motor-asyncio

我已经使用MongoDB和Motor.Asyncio使用Quart创建了一个Webapp。 当应用尝试查询数据库时,将引发错误:

Task <Task pending coro=<ASGIHTTPConnection.handle_request() 
running at /home/user/.local/lib/python3.7/site-packages/quart
/asgi.py:59> cb=[_wait.<locals>._on_completion() at /usr/lib/python3.7
/asyncio/tasks.py:440]> got Future <Future pending cb=[run_on_executor.
<locals>._call_check_cancel() at /home/user/.local/lib/python3.7/site-
packages/motor/frameworks/asyncio/__init__.py:80]> attached to a 
different loop

我不明白为什么会这样,或者不知道如何解决。

该应用程序一直运行都没有问题,但是我决定从Python 3.6(在Ubuntu-18.04上)升级到python 3.7.1。有了这个,我将Quart升级到0.9.0。升级的结果是发生了上述错误。

该应用程序通过Hypercorn和Nginx从命令行运行。

我不确定这种情况下代码的哪些部分是相关的

我先导入Quart,然后导入Motor:

    # Mongodb / Gridfs with Motor
    import motor.motor_asyncio
    from pymongo import ReturnDocument
    from bson.objectid import ObjectId
    from bson.son import SON

    client = motor.motor_asyncio.AsyncIOMotorClient()
    db = client.myDataBase
    fs = motor.motor_asyncio.AsyncIOMotorGridFSBucket(db)

在此之后,我添加:

    app = Quart(__name__)

我尝试在马达进口模块没有改变之前移动它。

根据问题/答案的建议: RuntimeError: Task attached to a different loop 我加了:

    loop=asyncio.new_event_loop()
    asyncio.set_event_loop(loop)
    client = motor.motor_asyncio.AsyncIOMotorClient(io_loop=loop)

那没有解决。

这是第一次调用电动机的块,并且发生错误:

    try:
        session_info = await db.sessions.find_one(
            {
                'session_id': uuid.UUID(session_id)
            },
            {
                'username':True,
                '_id':False
            }
        )
    except Exception as e:
        print('error retrieving session info:', e)

我可以忽略该错误并继续,但是随后进行下一个调用,并发生相同的错误。

我了解到Quart可以在默认的event_loop上运行,因此无需为电机创建特殊的循环。它可以在以前的版本中正常运行。所以我完全不知所措。

2 个答案:

答案 0 :(得分:1)

我知道它的回复很晚,但是如果它也对其他人有帮助的话

您可以使用Quart-Motor(点动安装quart-motor)并在应用程序中的任何位置使用它。

https://github.com/marirs/quart-motor/

from quart_motor import Motor

app = Quart(__name__)
mongo = Motor(app,  uri='...')

@app.route('/<user_name:str>')
async def user_info(user_name):
    user = await mongo.db.users.find_one_or_404({"username": user_name})
    return render_template("user.html", user=user)

注意:我是Quart-Motor的开发人员

答案 1 :(得分:0)

我基于以下问题找到了解决方案: asyncio.run fails when loop.run_until_complete works

那里提供的答案建议将mongoDB的初始化移动到main()内部。在这种情况下,因为这是Quart应用程序,所以没有主要的本质。但是直觉依然存在。

我在模块级别定义了一个初始化函数,然后在对数据库进行调用之前,我先检查它是否已经初始化,如果没有,则调用初始化函数。

    import motor.motor_asyncio
    from pymongo import ReturnDocument
    from bson.objectid import ObjectId
    from bson.son import SON

    client = None
    db = None
    fs = None

    async def connect_to_mongo():
        global client, db, fs
        client = motor.motor_asyncio.AsyncIOMotorClient()
        db = client.myDataBase
        fs = motor.motor_asyncio.AsyncIOMotorGridFSBucket(db)

然后在调用数据库之前:

    if db is None:
        await connect_to_mongo()

这解决了我的问题。为什么我的代码在升级之前能正常工作?我不知道。