mirror of
https://github.com/ansible/awx.git
synced 2026-03-28 14:25:05 -02:30
147 lines
5.1 KiB
Python
147 lines
5.1 KiB
Python
# Copyright (c) 2015 Ansible, Inc.
|
|
# All Rights Reserved
|
|
|
|
# Python
|
|
import re
|
|
from dateutil.relativedelta import relativedelta
|
|
from optparse import make_option
|
|
|
|
# Django
|
|
from django.core.management.base import BaseCommand, CommandError
|
|
from django.db import transaction
|
|
from django.utils.timezone import now
|
|
|
|
# AWX
|
|
from awx.main.models.fact import Fact
|
|
from awx.conf.license import feature_enabled
|
|
|
|
OLDER_THAN = 'older_than'
|
|
GRANULARITY = 'granularity'
|
|
|
|
|
|
class CleanupFacts(object):
|
|
def __init__(self):
|
|
self.timestamp = None
|
|
|
|
# Find all with timestamp < older_than
|
|
# Start search at < older_than, stop search at oldest entry
|
|
# Find all factVersion < pivot && > (pivot - granularity) grouped by host sorted by time descending (because it's indexed this way)
|
|
# foreach group
|
|
# Delete all except LAST entry (or Delete all except the FIRST entry, it's an arbitrary decision)
|
|
#
|
|
# pivot -= granularity
|
|
# group by host
|
|
def cleanup(self, older_than_abs, granularity, module=None):
|
|
fact_oldest = Fact.objects.all().order_by('timestamp').first()
|
|
if not fact_oldest:
|
|
return 0
|
|
|
|
kv = {
|
|
'timestamp__lte': older_than_abs
|
|
}
|
|
if module:
|
|
kv['module'] = module
|
|
|
|
# Special case, granularity=0x where x is d, w, or y
|
|
# The intent is to delete all facts < older_than_abs
|
|
if granularity == relativedelta():
|
|
qs = Fact.objects.filter(**kv)
|
|
count = qs.count()
|
|
qs.delete()
|
|
return count
|
|
|
|
total = 0
|
|
|
|
date_pivot = older_than_abs
|
|
while date_pivot > fact_oldest.timestamp:
|
|
date_pivot_next = date_pivot - granularity
|
|
|
|
# For the current time window.
|
|
# Delete all facts expect the fact that matches the largest timestamp.
|
|
kv = {
|
|
'timestamp__lte': date_pivot
|
|
}
|
|
if module:
|
|
kv['module'] = module
|
|
|
|
|
|
fact_version_obj = Fact.objects.filter(**kv).order_by('-timestamp').first()
|
|
if fact_version_obj:
|
|
kv = {
|
|
'timestamp__lt': fact_version_obj.timestamp,
|
|
'timestamp__gt': date_pivot_next
|
|
}
|
|
if module:
|
|
kv['module'] = module
|
|
qs = Fact.objects.filter(**kv)
|
|
count = qs.count()
|
|
qs.delete()
|
|
total += count
|
|
|
|
date_pivot = date_pivot_next
|
|
|
|
return total
|
|
|
|
'''
|
|
older_than and granularity are of type relativedelta
|
|
'''
|
|
def run(self, older_than, granularity, module=None):
|
|
t = now()
|
|
deleted_count = self.cleanup(t - older_than, granularity, module=module)
|
|
print("Deleted %d facts." % deleted_count)
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Cleanup facts. For each host older than the value specified, keep one fact scan for each time window (granularity).'
|
|
option_list = BaseCommand.option_list + (
|
|
make_option('--older_than',
|
|
dest='older_than',
|
|
default='30d',
|
|
help='Specify the relative time to consider facts older than (w)eek (d)ay or (y)ear (i.e. 5d, 2w, 1y). Defaults to 30d.'),
|
|
make_option('--granularity',
|
|
dest='granularity',
|
|
default='1w',
|
|
help='Window duration to group same hosts by for deletion (w)eek (d)ay or (y)ear (i.e. 5d, 2w, 1y). Defaults to 1w.'),
|
|
make_option('--module',
|
|
dest='module',
|
|
default=None,
|
|
help='Limit cleanup to a particular module.'),)
|
|
|
|
def __init__(self):
|
|
super(Command, self).__init__()
|
|
|
|
def string_time_to_timestamp(self, time_string):
|
|
units = {
|
|
'y': 'years',
|
|
'd': 'days',
|
|
'w': 'weeks',
|
|
'm': 'months'
|
|
}
|
|
try:
|
|
match = re.match(r'(?P<value>[0-9]+)(?P<unit>.*)', time_string)
|
|
group = match.groupdict()
|
|
kv = {}
|
|
units_verbose = units[group['unit']]
|
|
kv[units_verbose]= int(group['value'])
|
|
return relativedelta(**kv)
|
|
except (KeyError, TypeError, AttributeError):
|
|
return None
|
|
|
|
@transaction.atomic
|
|
def handle(self, *args, **options):
|
|
if not feature_enabled('system_tracking'):
|
|
raise CommandError("The System Tracking feature is not enabled for your instance")
|
|
cleanup_facts = CleanupFacts()
|
|
if not all([options[GRANULARITY], options[OLDER_THAN]]):
|
|
raise CommandError('Both --granularity and --older_than are required.')
|
|
|
|
older_than = self.string_time_to_timestamp(options[OLDER_THAN])
|
|
granularity = self.string_time_to_timestamp(options[GRANULARITY])
|
|
|
|
if older_than is None:
|
|
raise CommandError('--older_than invalid value "%s"' % options[OLDER_THAN])
|
|
if granularity is None:
|
|
raise CommandError('--granularity invalid value "%s"' % options[GRANULARITY])
|
|
|
|
cleanup_facts.run(older_than, granularity, module=options['module'])
|