Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (3.6 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, CommandError
33
from synnefo import settings
34
import datetime
35

    
36
from synnefo.db.models import Backend
37
from synnefo.logic.backend import update_resources
38

    
39

    
40
class Command(BaseCommand):
41
    can_import_settings = True
42

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

    
58
    def handle(self, **options):
59

    
60
        if options['backend_id']:
61
            try:
62
                backend_id = int(options['backend_id'])
63
                backends = [Backend.objects.get(id=backend_id)]
64
            except ValueError:
65
                raise CommandError("Wrong backend ID")
66
            except Backend.DoesNotExist:
67
                raise CommandError("Backend not found in DB")
68
        else:
69
            backends = Backend.objects.filter(offline=False)
70

    
71
        if not options['drained']:
72
            backends = backends.filter(drained=False)
73

    
74
        now = datetime.datetime.now()
75
        if options['older_than'] is not None:
76
            minutes = int(options['older_than'])
77
        else:
78
            minutes = settings.BACKEND_REFRESH_MIN
79

    
80
        delta = datetime.timedelta(minutes=minutes)
81

    
82
        for b in backends:
83
            if now > b.updated + delta:
84
                update_resources(b)
85
                print 'Successfully updated backend with id: %d' % b.id
86
            else:
87
                print 'Backend %d does not need update' % b.id