7

Celeryやその他のもの(データベースなど)を初期化する必要のあるアプリケーションがあります。アプリケーション構成を含む.iniファイルが欲しいのですが。これは、実行時にアプリケーションに渡す必要があります。

development.init:

[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 worker --app=myproject.celeryconfig -l info

環境変数を設定するような醜いことをせずに設定ファイルを渡す方法はありますか?

4

2 に答える 2

6

わかりました、私はヨルダンのアドバイスを受けて、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 に答える