我正在使用Django==2.0.5
和celery==4.0.2
。 我的proj/proj/celery.py
看起来像:
from __future__ import absolute_import, unicode_literals
import os
from celery import Celery
# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proj.settings')
app = Celery('proj', include=[])
# Using a string here means the worker doesn't have to serialize
# the configuration object to child processes.
# - namespace='CELERY' means all celery-related configuration keys
# should have a `CELERY_` prefix.
app.config_from_object('django.conf:settings', namespace='CELERY')
# Load task modules from all registered Django app configs.
# app.autodiscover_tasks()
@app.task(bind=True)
def debug_task(self):
print('Request: {0!r}'.format(self.request))
我原本以为tasks.py
应用程序中用shared_task
装饰的任务都不会被发现,但令我惊讶的是,当使用celery worker -A proj -l INFO
运行celery worker
时,大多数任务都可以在[tasks]
下看到。
我的目录结构有点像:
app
│ ├── __init__.py
│ ├── admin.py
│ ├── apps.py
│ ├── constants.py
│ ├── scripts
│ │ ├── __init__.py
│ ├── factories.py
│ ├── migrations
│ │ ├── 0001_initial.py
│ │ ├── __init__.py
│ ├── models.py
│ ├── tasks.py
│ └── tests
│ ├── __init__.py
CELERY_IMPORTS
没有设置在settings.py
中,我什至尝试过CELERY_IMPORTS=()
和CELERY_IMPORTS=['path/to/one/of/the/modules']
,即使这样,所有任务都会被发现。
欢迎任何建议。
你应该尝试不带 (bind=True( 标志的 @app.task。 此外,如果模块中的所有任务位于模块的初始化文件中,则芹菜可以检测它们。在姜戈 settings.py
CELERY_IMPORTS=("path/to/module",)
将导致发现该模块中的所有内容。确保你没有做过类似的事情。
您还可以共享项目文件夹结构吗?