7

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

开发.init:

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

[database]
# database config
# ...

芹菜配置.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

无论如何都可以传入配置文件而不做一些丑陋的事情,比如设置环境变量?

4

2 回答 2

6

好吧,我接受了 Jordan 的建议并使用了 env 变量。这就是我在 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()

开始芹菜:

$ export CELERY_CONFIG=development.ini
$ celery worker --app=myproject.celeryconfig -l info
于 2012-12-06T19:37:33.670 回答
3

设置环境变量如何丑陋?您可以使用应用程序的当前版本设置环境变量,也可以根据主机名派生它,或者您可以让构建/部署过程覆盖文件,并在开发时让 development.ini 复制到 settings.ini在一般位置,在生产中,您让 production.ini 复制到 settings.ini。

这些选项中的任何一个都很常见。使用 Chef 或 Puppet 等配置管理工具来放置文件是一个不错的选择。

于 2012-12-06T19:01:16.257 回答