Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / logic / management / commands / backend-update-status.py @ d7841399

History | View | Annotate | Download (3.4 kB)

1
# Copyright 2011-2012 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or without
4
# modification, are permitted provided that the following conditions
5
# are met:
6
#
7
#   1. Redistributions of source code must retain the above copyright
8
#      notice, this list of conditions and the following disclaimer.
9
#
10
#  2. Redistributions in binary form must reproduce the above copyright
11
#     notice, this list of conditions and the following disclaimer in the
12
#     documentation and/or other materials provided with the distribution.
13
#
14
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
15
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17
# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
18
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24
# SUCH DAMAGE.
25
#
26
# The views and conclusions contained in the software and documentation are
27
# those of the authors and should not be interpreted as representing official
28
# policies, either expressed or implied, of GRNET S.A.
29
#
30

    
31
from optparse import make_option
32
from django.core.management.base import BaseCommand
33
from synnefo.management.common import get_backend
34

    
35
from synnefo import settings
36
import datetime
37

    
38
from synnefo.db.models import Backend
39
from synnefo.logic.backend import update_resources
40

    
41

    
42
class Command(BaseCommand):
43
    can_import_settings = True
44

    
45
    help = "Update backend statistics, which are used for instance allocation."
46
    output_transaction = True  # The management command runs inside
47
                               # an SQL transaction
48
    option_list = BaseCommand.option_list + (
49
        make_option('--backend-id', dest='backend_id',
50
                   help="Update statistics of only this backend"),
51
        make_option('--older-than', dest='older_than', metavar="MINUTES",
52
                   help="Update only backends that have not been updated for\
53
                   MINUTES. Set to 0 to force update."),
54
        make_option('--include-drained', dest='drained',
55
                    default=False,
56
                    action='store_true',
57
                    help="Also update statistics of drained backends")
58
        )
59

    
60
    def handle(self, **options):
61

    
62
        if options['backend_id']:
63
            backends = [get_backend(options['backend_id'])]
64
        else:
65
            backends = Backend.objects.filter(offline=False)
66
            if not options['drained']:
67
                backends = backends.filter(drained=False)
68

    
69
        now = datetime.datetime.now()
70
        if options['older_than'] is not None:
71
            minutes = int(options['older_than'])
72
        else:
73
            minutes = settings.BACKEND_REFRESH_MIN
74

    
75
        delta = datetime.timedelta(minutes=minutes)
76

    
77
        for b in backends:
78
            if now > b.updated + delta:
79
                update_resources(b)
80
                print 'Successfully updated backend with id: %d' % b.id
81
            else:
82
                print 'Backend %d does not need update' % b.id