Deprecated Noisy Neighbor strategy
Noisy neighbor strategy is a proof of concept strategy that was built based on LLC metric, which is not available in Nova since Victoria release[1]. This patch marks this strategy as deprecated, to be removed in future releases. [1] https://docs.openstack.org/releasenotes/nova/victoria.html#relnotes-22-0-0-unmaintained-victoria-upgrade-notes Change-Id: I940b88555007312c76a86706bd44a38fbcf7701e
This commit is contained in:
@@ -16,8 +16,10 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
from debtcollector import removals
|
||||
from oslo_config import cfg
|
||||
from oslo_log import log
|
||||
import warnings
|
||||
|
||||
from watcher._i18n import _
|
||||
from watcher.decision_engine.strategy.strategies import base
|
||||
@@ -25,7 +27,11 @@ from watcher.decision_engine.strategy.strategies import base
|
||||
LOG = log.getLogger(__name__)
|
||||
CONF = cfg.CONF
|
||||
|
||||
warnings.simplefilter('always')
|
||||
|
||||
|
||||
@removals.removed_class("NoisyNeighbor", version="2025.2",
|
||||
removal_version="2026.2")
|
||||
class NoisyNeighbor(base.NoisyNeighborBaseStrategy):
|
||||
"""Noisy Neighbor strategy using live migration
|
||||
|
||||
|
||||
Reference in New Issue
Block a user