gpt4 book ai didi

python - 从 Python 属性文件中读取 Celery 配置

转载 作者:太空狗 更新时间:2023-10-29 21:40:29 24 4
gpt4 key购买 nike

我有一个应用程序需要初始化 Celery 和其他东西(例如数据库)。我想要一个包含应用程序配置的 .ini 文件。这应该在运行时传递给应用程序。

开发初始化:

[celery]
broker=amqp://localhost/
backend=amqp://localhost/
task.result.expires=3600

[database]
# database config
# ...

celeryconfig.py:

from celery import Celery
import ConfigParser

config = ConfigParser.RawConfigParser()
config.read(...) # Pass this from the command line somehow

celery = Celery('myproject.celery',
broker=config.get('celery', 'broker'),
backend=config.get('celery', 'backend'),
include=['myproject.tasks'])

# Optional configuration, see the application user guide.
celery.conf.update(
CELERY_TASK_RESULT_EXPIRES=config.getint('celery', 'task.result.expires')
)

# Initialize database, etc.

if __name__ == '__main__':
celery.start()

要启动 Celery,我调用:

celery worker --app=myproject.celeryconfig -l info

有没有办法在不做一些像设置环境变量这样丑陋的事情的情况下传递配置文件?

最佳答案

好吧,我采纳了 Jordan 的建议并使用了环境变量。这是我在 celeryconfig.py 中得到的:

celery import Celery
import os
import sys
import ConfigParser

CELERY_CONFIG = 'CELERY_CONFIG'

if not CELERY_CONFIG in os.environ:
sys.stderr.write('Missing env variable "%s"\n\n' % CELERY_CONFIG)
sys.exit(2)

configfile = os.environ['CELERY_CONFIG']

if not os.path.isfile(configfile):
sys.stderr.write('Can\'t read file: "%s"\n\n' % configfile)
sys.exit(2)

config = ConfigParser.RawConfigParser()
config.read(configfile)

celery = Celery('myproject.celery',
broker=config.get('celery', 'broker'),
backend=config.get('celery', 'backend'),
include=['myproject.tasks'])

# Optional configuration, see the application user guide.
celery.conf.update(
CELERY_TASK_RESULT_EXPIRES=config.getint('celery', 'task.result.expires'),
)

if __name__ == '__main__':
celery.start()

启动 celery :

$ export CELERY_CONFIG=development.ini
$ celery worker --app=myproject.celeryconfig -l info

关于python - 从 Python 属性文件中读取 Celery 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13750569/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com