为什么它找不到我的芹菜配置文件?

时间:2011-01-21 19:44:03

标签: python django celery

  

/home/myuser/mysite-env/lib/python2.6/site-packages/celery/loaders/default.py:53:   NotConfigured:没有celeryconfig.py   发现模块!请确认   存在并可供Python使用   NotConfigured)

我甚至在我的/ etc / profile中定义了它,也在我的虚拟环境中定义了“activate”。但它不是在阅读它。

4 个答案:

答案 0 :(得分:21)

我的任务模块遇到了类似的问题。一个简单的

# celery config is in a non-standard location
import os
os.environ['CELERY_CONFIG_MODULE'] = 'mypackage.celeryconfig'
我的包__init__.py中的

解决了这个问题。

答案 1 :(得分:21)

现在,在Celery 4.1中,您可以通过该代码解决该问题(最简单的方法):

import celeryconfig

from celery import Celery

app = Celery()
app.config_from_object(celeryconfig)

例如小 celeryconfig.py

BROKER_URL = 'pyamqp://'
CELERY_RESULT_BACKEND = 'redis://localhost'
CELERY_ROUTES = {'task_name': {'queue': 'queue_name_for_task'}}

也非常简单:

from celery import Celery

app = Celery('tasks')

app.conf.update(
    result_expires=60,
    task_acks_late=True,
    broker_url='pyamqp://',
    result_backend='redis://localhost'
)

或使用配置类/对象:

from celery import Celery

app = Celery()

class Config:
    enable_utc = True
    timezone = 'Europe/London'

app.config_from_object(Config)
# or using the fully qualified name of the object:
#   app.config_from_object('module:Config')

或者如何通过设置CELERY_CONFIG_MODULE 来提及

import os
from celery import Celery

#: Set default configuration module name
os.environ.setdefault('CELERY_CONFIG_MODULE', 'celeryconfig')

app = Celery()
app.config_from_envvar('CELERY_CONFIG_MODULE')

另见:

答案 2 :(得分:2)

确保celeryconfig.py位于运行'celeryd'的同一位置,或者确保它在Python路径上可用。

答案 3 :(得分:2)

你可以在环境中解决这个问题......或者,使用--config:它需要

  1. 来自/ etc / defaults / celeryd
  2. 的相对于CELERY_CHDIR的路径
  3. python模块名称,而不是文件名。
  4. 错误消息可能会使用这两个事实。