我正在尝试使用他们的 FilterScheduler 组件为 OpenStack 创建一个自定义过滤器。FilterScheduler 的文档在这里:http ://docs.openstack.org/developer/nova/devref/filter_scheduler.html#
现在,创建您自己的自定义过滤器的文档方式并不多。事实上,完整的文档是:
If you want to create your own filter you just need to inherit from BaseHostFilter and implement one method: host_passes. This method should return True if host passes the filter. It takes host_state (describes host) and filter_properties dictionary as the parameters.
As an example, nova.conf could contain the following scheduler-related settings:
--scheduler_driver=nova.scheduler.FilterScheduler
--scheduler_available_filters=nova.scheduler.filters.standard_filters
--scheduler_available_filters=myfilter.MyFilter
--scheduler_default_filters=RamFilter,ComputeFilter,MyFilter
我创建了一个自定义的“test_filter.py”——它与“all_hosts_filter.py”非常相似,这是最简单的标准过滤器。
这是它的全部内容:
from nova.scheduler import filters
from nova.openstack.common import log as logging
LOG = logging.getLogger(__name__)
class TestFilter(filters.BaseHostFilter):
"""NOOP host filter. Returns all hosts."""
def host_passes(self, host_state, filter_properties):
LOG.debug("COMING FROM: nova/scheduler/filters/test_filter.py")
return True
但是当我将这个文件“test_filter.py”放在nova/scheduler/filters
文件夹中并重新启动 OpenStack 时,我得到以下异常:
CRITICAL nova [-] Class test_filter could not be found: 'module' object has no attribute 'test_filter'
OpenStack 似乎正在注册并尝试导入我的新过滤器,但出现了一些错误。作为参考,这是我/etc/nova/nova.conf
文件的相关部分的样子:
scheduler_available_filters=nova.scheduler.filters.all_filters
scheduler_available_filters=nova.scheduler.filters.test_filter.TestFilter
scheduler_default_filters=TestFilter,RamFilter,ComputeFilter
======
更新:2000 年 4 月 15 日 BST。
对此问题的更新,仍在苦苦挣扎。在 OpenStack IRC 频道上讨论了 boris-42 的问题后,我们进行了更多调查:
Openstack-scheduler 作为 /usr/bin/nova-scheduler 的服务运行
然后它有一个错误:
"Inner Exception: 'module' object has no attribute 'test_filter' from (pid=32696) import_class /usr/lib/python2.7/dist-packages/nova/utils.py:78"
这表明它使用 /usr/lib/python2.7/dist-packages/nova/ 文件夹作为安装的源文件。
将我的自定义“test_filter.py”放入/usr/lib/python2.7/dist-packages/nova/scheduler/filters
会导致上述错误。
但是,经过仔细检查,似乎该文件 /usr/lib/python2.7/dist-packages/nova/scheduler/filters
夹中的所有其他文件实际上都是指向 /usr/share/pyshared/nova/scheduler/filters
所以我把我的“test_filter.py”放在 /usr/share/pyshared/nova/scheduler/filters
-- 然后在原始文件夹中创建了一个符号链接。
这导致完全相同的文件夹。只要文件存在或文件夹中存在链接, /usr/lib/python2.7/dist-packages/nova/scheduler/filters
就会发生错误。
nova.conf 文件更新如下:
scheduler_available_filters=nova.scheduler.filters.TestFilter
scheduler_default_filters=TestFilter