Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (3.3 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
        )
53

    
54
    def handle(self, **options):
55

    
56
        if options['backend_id']:
57
            try:
58
                backend_id = int(options['backend_id'])
59
                backends = [Backend.objects.get(id=backend_id)]
60
            except ValueError:
61
                raise CommandError("Wrong backend ID")
62
            except Backend.DoesNotExist:
63
                raise CommandError("Backend not found in DB")
64
        else:
65
            # XXX:filter drained ?
66
            backends = Backend.objects.all()
67

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

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

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