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

发布于 2024-10-13 11:25:12 字数 247 浏览 1 评论 0原文

/home/myuser/mysite-env/lib/python2.6/site-packages/celery/loaders/default.py:53: 未配置:没有 celeryconfig.py 模块找到了!请确认一下 存在并且可用于 Python。
未配置)

我什至在我的 /etc/profile 以及我的虚拟环境的“activate”中定义了它。但它不是在读它。

/home/myuser/mysite-env/lib/python2.6/site-packages/celery/loaders/default.py:53:
NotConfigured: No celeryconfig.py
module found! Please make sure it
exists and is available to Python.
NotConfigured)

I even defined it in my /etc/profile and also in my virtual environment's "activate". But it's not reading it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

恰似旧人归 2024-10-20 11:25:13

我的任务模块也有类似的问题。 一个简单的解决了这个问题。

# celery config is in a non-standard location
import os
os.environ['CELERY_CONFIG_MODULE'] = 'mypackage.celeryconfig'

我的包的 __init__.py 中的

I had a similar problem with my tasks module. A simple

# celery config is in a non-standard location
import os
os.environ['CELERY_CONFIG_MODULE'] = 'mypackage.celeryconfig'

in my package's __init__.py solved this problem.

秋风の叶未落 2024-10-20 11:25:13

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

Make sure you have celeryconfig.py in the same location you are running 'celeryd' or otherwise make sure its is available on the Python path.

被翻牌 2024-10-20 11:25:13

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

  1. 一个相对于 /etc/defaults/celeryd 中的 CELERY_CHDIR 的路径,
  2. 一个 python 模块名称,而不是文件名。

错误消息可能会使用这两个事实。

you can work around this with the environment... or, use --config: it requires

  1. a path relative to CELERY_CHDIR from /etc/defaults/celeryd
  2. a python module name, not a filename.

The error message could probably use these two facts.

在巴黎塔顶看东京樱花 2024-10-20 11:25:12

现在在 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')

另请参阅:

Now in Celery 4.1 you can solve that problem by that code(the easiest way):

import celeryconfig

from celery import Celery

app = Celery()
app.config_from_object(celeryconfig)

For Example small celeryconfig.py :

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

Also very simple way:

from celery import Celery

app = Celery('tasks')

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

Or Using a configuration class/object:

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')

Or how was mentioned by setting 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')

Also see:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文