~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to nova/scheduler/filters/retry_filter.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-08-16 14:04:11 UTC
  • mto: This revision was merged to the branch mainline in revision 84.
  • Revision ID: package-import@ubuntu.com-20120816140411-0mr4n241wmk30t9l
Tags: upstream-2012.2~f3
ImportĀ upstreamĀ versionĀ 2012.2~f3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (c) 2012 OpenStack, LLC.
 
2
# All Rights Reserved.
 
3
#
 
4
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 
5
#    not use this file except in compliance with the License. You may obtain
 
6
#    a copy of the License at
 
7
#
 
8
#         http://www.apache.org/licenses/LICENSE-2.0
 
9
#
 
10
#    Unless required by applicable law or agreed to in writing, software
 
11
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
12
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
13
#    License for the specific language governing permissions and limitations
 
14
#    under the License.
 
15
 
 
16
from nova.openstack.common import log as logging
 
17
from nova.scheduler import filters
 
18
 
 
19
LOG = logging.getLogger(__name__)
 
20
 
 
21
 
 
22
class RetryFilter(filters.BaseHostFilter):
 
23
    """Filter out hosts that have already been attempted for scheduling
 
24
    purposes
 
25
    """
 
26
 
 
27
    def host_passes(self, host_state, filter_properties):
 
28
        """Skip hosts that have already been attempted"""
 
29
        retry = filter_properties.get('retry', None)
 
30
        if not retry:
 
31
            # Re-scheduling is disabled
 
32
            LOG.debug("Re-scheduling is disabled")
 
33
            return True
 
34
 
 
35
        hosts = retry.get('hosts', [])
 
36
        host = host_state.host
 
37
 
 
38
        LOG.debug(_("Previously tried hosts: %(hosts)s.  (host=%(host)s)") %
 
39
                locals())
 
40
 
 
41
        # Host passes if it's not in the list of previously attempted hosts:
 
42
        return host not in hosts