¡@

Home 

OpenStack Study: capacity.py

OpenStack Index

**** CubicPower OpenStack Study ****

# Copyright (c) 2013 eBay Inc.

# Copyright (c) 2012 OpenStack Foundation

# All Rights Reserved.

#

# Licensed under the Apache License, Version 2.0 (the "License"); you may

# not use this file except in compliance with the License. You may obtain

# a copy of the License at

#

# http://www.apache.org/licenses/LICENSE-2.0

#

# Unless required by applicable law or agreed to in writing, software

# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT

# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the

# License for the specific language governing permissions and limitations

# under the License.

"""

Weighers that weigh hosts by their capacity, including following two

weighers:

1. Capacity Weigher. Weigh hosts by their available capacity.

The default is to spread volumes across all hosts evenly. If you prefer

stacking, you can set the 'capacity_weight_multiplier' option to a negative

number and the weighing has the opposite effect of the default.

2. Allocated Capacity Weigher. Weigh hosts by their allocated capacity.

The default behavior is to place new volume to the host allocated the least

space. This weigher is intended to simulate the behavior of SimpleScheduler.

If you prefer to place volumes to host allocated the most space, you can

set the 'allocated_capacity_weight_multiplier' option to a positive number

and the weighing has the opposite effect of the default.

"""

import math

from oslo.config import cfg

from cinder.openstack.common.scheduler import weights

capacity_weight_opts = [

cfg.FloatOpt('capacity_weight_multiplier',

default=1.0,

help='Multiplier used for weighing volume capacity. '

'Negative numbers mean to stack vs spread.'),

cfg.FloatOpt('allocated_capacity_weight_multiplier',

default=-1.0,

help='Multiplier used for weighing volume capacity. '

'Negative numbers mean to stack vs spread.'),

]

CONF = cfg.CONF

CONF.register_opts(capacity_weight_opts)

**** CubicPower OpenStack Study ****

class CapacityWeigher(weights.BaseHostWeigher):

**** CubicPower OpenStack Study ****

    def _weight_multiplier(self):

        """Override the weight multiplier."""

        return CONF.capacity_weight_multiplier

**** CubicPower OpenStack Study ****

    def _weigh_object(self, host_state, weight_properties):

        """Higher weights win.  We want spreading to be the default."""

        reserved = float(host_state.reserved_percentage) / 100

        free_space = host_state.free_capacity_gb

        if free_space == 'infinite' or free_space == 'unknown':

            #(zhiteng) 'infinite' and 'unknown' are treated the same

            # here, for sorting purpose.

            free = float('inf')

        else:

            free = math.floor(host_state.free_capacity_gb * (1 - reserved))

        return free

**** CubicPower OpenStack Study ****

class AllocatedCapacityWeigher(weights.BaseHostWeigher):

**** CubicPower OpenStack Study ****

    def _weight_multiplier(self):

        """Override the weight multiplier."""

        return CONF.allocated_capacity_weight_multiplier

**** CubicPower OpenStack Study ****

    def _weigh_object(self, host_state, weight_properties):

        # Higher weights win.  We want spreading (choose host with lowest

        # allocated_capacity first) to be the default.

        allocated_space = host_state.allocated_capacity_gb

        return allocated_space