我正在尝试将 Faust 与 Django 集成以将消息发布到 Kafka。这是浮士德仓库中的示例:https ://github.com/robinhood/faust/tree/master/examples/django
我对其进行了一些修改,并创建了视图以通过 Faust 将数据推送到 Kafka。
from django.shortcuts import render
from asgiref.sync import async_to_sync
from accounts.agents import AccountRecord, add_account
async def send_data() -> None:
print("sending..data")
print(await add_account.ask(AccountRecord(name="tesst", score=10.9, active=False)))
def index(request):
async_to_sync(send_data)()
return render(request, "accounts/index.html")
但是,我现在收到此错误:
RuntimeError at / Task <Task pending name='Task-1' coro=<AsyncToSync.main_wrap() running at /Users/mysuer/.pyenv/versions/3.8.3/envs/faustdjango/lib/python3.8/site- packages/asgiref/sync.py:204> cb=[_run_until_complete_cb() at /Users/mysuer/.pyenv/versions/3.8.3/lib/python3.8/asyncio/base_events.py:184]> 将 Future 附加到不同的循环
我正在使用开发服务器运行这个 Django 应用程序。我究竟做错了什么?任何人?:)