Mark Chance and Caching schedulers as deprecated
FilterScheduler with Placement should replace both of these. Mark them as deprecated now so the timer starts. Change-Id: Ia7ff98ff28b7265058845e46b277317a2bfc96d2
This commit is contained in:
parent
f09ff27dff
commit
d48bba18a7
nova
releasenotes/notes
@ -46,8 +46,8 @@ Other options are:
|
|||||||
|
|
||||||
* 'caching_scheduler' which aggressively caches the system state for better
|
* 'caching_scheduler' which aggressively caches the system state for better
|
||||||
individual scheduler performance at the risk of more retries when running
|
individual scheduler performance at the risk of more retries when running
|
||||||
multiple schedulers.
|
multiple schedulers. [DEPRECATED]
|
||||||
* 'chance_scheduler' which simply picks a host at random.
|
* 'chance_scheduler' which simply picks a host at random. [DEPRECATED]
|
||||||
* 'fake_scheduler' which is used for testing.
|
* 'fake_scheduler' which is used for testing.
|
||||||
|
|
||||||
Possible values:
|
Possible values:
|
||||||
|
@ -16,8 +16,12 @@
|
|||||||
import collections
|
import collections
|
||||||
import itertools
|
import itertools
|
||||||
|
|
||||||
|
from oslo_log import log as logging
|
||||||
|
|
||||||
from nova.scheduler import filter_scheduler
|
from nova.scheduler import filter_scheduler
|
||||||
|
|
||||||
|
LOG = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class CachingScheduler(filter_scheduler.FilterScheduler):
|
class CachingScheduler(filter_scheduler.FilterScheduler):
|
||||||
"""Scheduler to test aggressive caching of the host list.
|
"""Scheduler to test aggressive caching of the host list.
|
||||||
@ -58,6 +62,8 @@ class CachingScheduler(filter_scheduler.FilterScheduler):
|
|||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super(CachingScheduler, self).__init__(*args, **kwargs)
|
super(CachingScheduler, self).__init__(*args, **kwargs)
|
||||||
self.all_host_states = None
|
self.all_host_states = None
|
||||||
|
LOG.warning('CachingScheduler is deprecated in Pike and will be '
|
||||||
|
'removed in a subsequent release.')
|
||||||
|
|
||||||
def run_periodic_tasks(self, context):
|
def run_periodic_tasks(self, context):
|
||||||
"""Called from a periodic tasks in the manager."""
|
"""Called from a periodic tasks in the manager."""
|
||||||
|
@ -21,6 +21,8 @@ Chance (Random) Scheduler implementation
|
|||||||
|
|
||||||
import random
|
import random
|
||||||
|
|
||||||
|
from oslo_log import log as logging
|
||||||
|
|
||||||
from nova.compute import rpcapi as compute_rpcapi
|
from nova.compute import rpcapi as compute_rpcapi
|
||||||
import nova.conf
|
import nova.conf
|
||||||
from nova import exception
|
from nova import exception
|
||||||
@ -28,6 +30,7 @@ from nova.i18n import _
|
|||||||
from nova.scheduler import driver
|
from nova.scheduler import driver
|
||||||
|
|
||||||
CONF = nova.conf.CONF
|
CONF = nova.conf.CONF
|
||||||
|
LOG = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class ChanceScheduler(driver.Scheduler):
|
class ChanceScheduler(driver.Scheduler):
|
||||||
@ -35,6 +38,11 @@ class ChanceScheduler(driver.Scheduler):
|
|||||||
|
|
||||||
USES_ALLOCATION_CANDIDATES = False
|
USES_ALLOCATION_CANDIDATES = False
|
||||||
|
|
||||||
|
def __init__(self, *args, **kwargs):
|
||||||
|
super(ChanceScheduler, self).__init__(*args, **kwargs)
|
||||||
|
LOG.warning('ChanceScheduler is deprecated in Pike and will be '
|
||||||
|
'removed in a subsequent release.')
|
||||||
|
|
||||||
def _filter_hosts(self, hosts, spec_obj):
|
def _filter_hosts(self, hosts, spec_obj):
|
||||||
"""Filter a list of hosts based on RequestSpec."""
|
"""Filter a list of hosts based on RequestSpec."""
|
||||||
|
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
deprecations:
|
||||||
|
- |
|
||||||
|
The CachingScheduler and ChanceScheduler drivers are deprecated in Pike.
|
||||||
|
These are not integrated with the placement service, and their primary
|
||||||
|
purpose (speed over correctness) should be addressed by the default
|
||||||
|
FilterScheduler going forward. If ChanceScheduler behavior is desired
|
||||||
|
(i.e. speed trumps correctness) then configuring the FilterScheduler with
|
||||||
|
no enabled filters should approximate that behavior.
|
Loading…
Reference in New Issue
Block a user