我想在我的开发环境中使用Celery ( Celery beat ) 在Django中定期运行任务。
应用程序/核心/tasks.py
from celery import task
@task()
def add(x, y):
return x + y
settings.py(仅相关部分)
import djcelery
from celery.schedules import crontab
from apps.startups.tasks import add
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'development.db',
}
}
djcelery.setup_loader()
CELERY_IMPORTS = ("apps.core.tasks",)
BROKER_URL = 'amqp://guest:guest@localhost:5672/'
CELERYBEAT_SCHEDULE = {
'add-every-day': {
'task': 'apps.core.tasks.add',
'schedule': crontab(hour=11, minute=43),
'args': (16, 16),
},
}
然后我通过运行来启动 celery beat worker python manage.py celery worker --beat
。
然后在11:43
芹菜过程中向我报告以下内容:
[2013-08-27 11:43:00,216: WARNING/PoolWorker-5]
/home/username/.virtualenvs/myproject/local/lib/python2.7/site-packages/celery/task/trace.py:341: RuntimeWarning:
Exception raised outside body: ImproperlyConfigured(
'settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details.',)
这很奇怪,因为我已经'ENGINE'
在设置中提供了我的值,DATABASES
而且我的项目中的数据库从未遇到任何问题。任何线索为什么会发生这种情况?