我可以让它作为一个独立的应用程序运行,但我无法让它在 Django 中工作。
这是独立的代码:
from celery import Celery
from celery.schedules import crontab
app = Celery('tasks')
app.conf.update(
CELERY_TASK_SERIALIZER='json',
CELERY_RESULT_SERIALIZER='json',
CELERY_ACCEPT_CONTENT=['json'],
CELERY_TIMEZONE='US/Central',
CELERY_ENABLE_UTC=True,
CELERYBEAT_SCHEDULE = {
'test': {
'task': 'tasks.test',
'schedule': crontab(),
},
}
)
@app.task
def test():
with open('test.txt', 'a') as f:
f.write('Hello, World!\n')`
它提供给 Rabbitmq 服务器并每分钟写入文件。它就像一个魅力,但是当我试图让它在 Django 中工作时,我得到了这个错误:
你记得导入包含这个任务的模块吗?或者,也许您正在使用相对进口?请参阅____了解更多信息。
消息正文的完整内容是:{'retries': 0, 'eta': None, 'kwargs': {}, 'taskset': None, 'timelimit': [None, None], 'callbacks': None , 'task': 'proj.test', 'args': [], 'expires': None, 'id': '501ca998-b5eb-4ba4-98a8-afabda9e88dd', 'utc': True, 'errbacks':无,'弦':无}(246b)回溯(最近一次调用最后):文件“/home/user/CeleryDjango/venv/lib/python3.5/site-packages/celery/worker/consumer.py”,行456,在 on_task_received 策略[名称](消息,正文,KeyError:'proj.test' [2016-06-16 01:16:00,051:INFO/Beat] 调度程序:发送到期任务测试(proj.test)[2016- 06-16 01:16:00,055: ERROR/MainProcess] 收到“proj.test”类型的未注册任务。
这是我在 Django 中的代码:
# CELERY STUFF
CELERY_ACCEPT_CONTENT = ['application/json']
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
CELERY_TIMEZONE = 'US/Central'
CELERYBEAT_SCHEDULE = {
'test': {
'task': 'proj.test',
'schedule': crontab(),
}
}
芹菜.py
from __future__ import absolute_import
import os
from celery import Celery
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proj.settings')
from django.conf import settings # noqa
app = Celery('proj')
app.config_from_object('django.conf:settings')
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)
@app.task(bind=True)
def debug_task(self):
print('Request: {0!r}'.format(self.request))
任务.py
from __future__ import absolute_import
from celery import shared_task
@shared_task
def test():
with open('test.txt', 'w') as f:
print('Hello, World', file=f)
初始化文件
from __future__ import absolute_import
from .celery import app as celery_app
对此的任何想法都非常感谢。谢谢。