有没有办法动态加载配置文件?

时间:2016-05-27 07:35:21

标签: configuration multiprocessing configuration-files openstack

我有一个.conf文件,我不希望在进程启动时通过cmd行(--config-file)传递。相反,我希望它动态加载。

我使用oslo_config库来注册配置选项,我需要通过oslo_config库解析conf文件。

PS:由于这个oslo_config CONF对象已在我的多进程框架中传播,我不想使用其他库,如ConfigParser等。

感谢。

1 个答案:

答案 0 :(得分:0)

只需初始化另一个olslo_config.cfg.ConfigOpts()实例

self.conf = cfg.ConfigOpts()
self.conf(
    sys.argv[1:], # if there is, can be []
    project="whatever", # but will affect the searching directories
    default_config_files=["path/to/my/conf"] # if not set, will do a auto searching
)
# use it via self.conf.example_section.example_option