所以我刚刚开始使用芹菜并尝试做一些简单的测试来感受它。
我试图设置芹菜使用postgres为我的后端。
在这个页面上:
http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html#keeping-results
我看到了例子
celery = Celery('tasks', backend='redis://localhost', broker='amqp://')
所以在我的代码中我尝试
celery = Celery('tasks',
backend='sqla+postgresql://celery_exp:celery_exp@myhost/celery_exp',
broker='sqla+postgresql://celery_exp:celery_exp@myhost/celery_exp',)
但是我在启动时遇到了这个错误:
ImportError: No module named sqla+postgresql
在文档中,我尝试了不同的变体,例如
postgresql://
postgresql+psycopg2://
我知道连接字符串是正确的,因为取出Celery构造函数中的后端参数可以正常工作。
我在这做错了什么?我觉得它一定是蠢事,因为我在网上找不到任何东西。
提前感谢。
答案 0 :(得分:11)
答案就在这里http://celery.readthedocs.org/en/latest/configuration.html#database-url-examples
您需要在常规SQL Alchemy url字符串前加db+
作为前缀,例如
CELERY_RESULT_BACKEND = "db+postgresql+psycopg2://..."
答案 1 :(得分:0)
Celery获取您传递的URL,查看前缀(在本例中为“sqla + postgresql”)并查找与之匹配的后端。只有数据库的后端没有“通用”加载。您可以检查系统上celery文件夹中的后端/ init .py,以查看整个别名字典,然后添加自己的字典。