blob: 505f7c88999dfc657c69d0a0cc9a719a9c021945 [file] [log] [blame]
mblighf3294cc2009-04-08 21:17:38 +00001"""
2Autotest AFE Cleanup used by the scheduler
3"""
4
5
Prashanth B372613d2014-05-05 08:40:21 -07006import collections, datetime, time, logging, random
mblighf3294cc2009-04-08 21:17:38 +00007from autotest_lib.database import database_connection
8from autotest_lib.frontend.afe import models
9from autotest_lib.scheduler import email_manager, scheduler_config
showard8dbd05a2010-01-12 18:54:59 +000010from autotest_lib.client.common_lib import host_protections
Alex Milleree632912013-10-08 16:03:12 -070011from autotest_lib.site_utils.graphite import stats
mblighf3294cc2009-04-08 21:17:38 +000012
13
14class PeriodicCleanup(object):
15
16
17 def __init__(self, db, clean_interval, run_at_initialize=False):
18 self._db = db
19 self.clean_interval = clean_interval
20 self._last_clean_time = time.time()
showard915958d2009-04-22 21:00:58 +000021 self._run_at_initialize = run_at_initialize
22
23
24 def initialize(self):
25 if self._run_at_initialize:
mblighf3294cc2009-04-08 21:17:38 +000026 self._cleanup()
27
28
29 def run_cleanup_maybe(self):
30 should_cleanup = (self._last_clean_time + self.clean_interval * 60
31 < time.time())
32 if should_cleanup:
33 self._cleanup()
34 self._last_clean_time = time.time()
35
36
37 def _cleanup(self):
38 """Abrstract cleanup method."""
39 raise NotImplementedError
40
41
42class UserCleanup(PeriodicCleanup):
43 """User cleanup that is controlled by the global config variable
44 clean_interval in the SCHEDULER section.
45 """
Alex Milleree632912013-10-08 16:03:12 -070046 timer = stats.Timer('monitor_db_cleanup.user_cleanup')
mblighf3294cc2009-04-08 21:17:38 +000047
48
49 def __init__(self, db, clean_interval_minutes):
50 super(UserCleanup, self).__init__(db, clean_interval_minutes)
showard8dbd05a2010-01-12 18:54:59 +000051 self._last_reverify_time = time.time()
mblighf3294cc2009-04-08 21:17:38 +000052
53
Alex Milleree632912013-10-08 16:03:12 -070054 @timer.decorate
mblighf3294cc2009-04-08 21:17:38 +000055 def _cleanup(self):
mbligh1ef218d2009-08-03 16:57:56 +000056 logging.info('Running periodic cleanup')
57 self._abort_timed_out_jobs()
mbligh1ef218d2009-08-03 16:57:56 +000058 self._abort_jobs_past_max_runtime()
59 self._clear_inactive_blocks()
60 self._check_for_db_inconsistencies()
showard8dbd05a2010-01-12 18:54:59 +000061 self._reverify_dead_hosts()
Simran Basi742b81d2014-05-30 13:51:06 -070062 self._django_session_cleanup()
mblighf3294cc2009-04-08 21:17:38 +000063
64
Alex Milleree632912013-10-08 16:03:12 -070065 @timer.decorate
mblighf3294cc2009-04-08 21:17:38 +000066 def _abort_timed_out_jobs(self):
67 msg = 'Aborting all jobs that have timed out and are not complete'
68 logging.info(msg)
69 query = models.Job.objects.filter(hostqueueentry__complete=False).extra(
Simran Basi7e605742013-11-12 13:43:36 -080070 where=['created_on + INTERVAL timeout_mins MINUTE < NOW()'])
mblighf3294cc2009-04-08 21:17:38 +000071 for job in query.distinct():
72 logging.warning('Aborting job %d due to job timeout', job.id)
showard64a95952010-01-13 21:27:16 +000073 job.abort()
mblighf3294cc2009-04-08 21:17:38 +000074
75
Alex Milleree632912013-10-08 16:03:12 -070076 @timer.decorate
showard12f3e322009-05-13 21:27:42 +000077 def _abort_jobs_past_max_runtime(self):
78 """
79 Abort executions that have started and are past the job's max runtime.
80 """
81 logging.info('Aborting all jobs that have passed maximum runtime')
82 rows = self._db.execute("""
83 SELECT hqe.id
showardeab66ce2009-12-23 00:03:56 +000084 FROM afe_host_queue_entries AS hqe
85 INNER JOIN afe_jobs ON (hqe.job_id = afe_jobs.id)
showard12f3e322009-05-13 21:27:42 +000086 WHERE NOT hqe.complete AND NOT hqe.aborted AND
Simran Basi34217022012-11-06 13:43:15 -080087 hqe.started_on + INTERVAL afe_jobs.max_runtime_mins MINUTE <
88 NOW()""")
showard12f3e322009-05-13 21:27:42 +000089 query = models.HostQueueEntry.objects.filter(
90 id__in=[row[0] for row in rows])
91 for queue_entry in query.distinct():
92 logging.warning('Aborting entry %s due to max runtime', queue_entry)
showard64a95952010-01-13 21:27:16 +000093 queue_entry.abort()
showard12f3e322009-05-13 21:27:42 +000094
95
Alex Milleree632912013-10-08 16:03:12 -070096 @timer.decorate
mblighf3294cc2009-04-08 21:17:38 +000097 def _check_for_db_inconsistencies(self):
showard01a51672009-05-29 18:42:37 +000098 logging.info('Cleaning db inconsistencies')
99 self._check_all_invalid_related_objects()
mblighf3294cc2009-04-08 21:17:38 +0000100
showard01a51672009-05-29 18:42:37 +0000101
102 def _check_invalid_related_objects_one_way(self, first_model,
103 relation_field, second_model):
104 if 'invalid' not in first_model.get_field_dict():
105 return []
106 invalid_objects = list(first_model.objects.filter(invalid=True))
107 first_model.objects.populate_relationships(invalid_objects,
108 second_model,
109 'related_objects')
110 error_lines = []
111 for invalid_object in invalid_objects:
112 if invalid_object.related_objects:
113 related_list = ', '.join(str(related_object) for related_object
114 in invalid_object.related_objects)
115 error_lines.append('Invalid %s %s is related to %ss: %s'
116 % (first_model.__name__, invalid_object,
117 second_model.__name__, related_list))
118 related_manager = getattr(invalid_object, relation_field)
119 related_manager.clear()
120 return error_lines
121
122
123 def _check_invalid_related_objects(self, first_model, first_field,
124 second_model, second_field):
125 errors = self._check_invalid_related_objects_one_way(
126 first_model, first_field, second_model)
127 errors.extend(self._check_invalid_related_objects_one_way(
128 second_model, second_field, first_model))
129 return errors
130
131
132 def _check_all_invalid_related_objects(self):
133 model_pairs = ((models.Host, 'labels', models.Label, 'host_set'),
134 (models.AclGroup, 'hosts', models.Host, 'aclgroup_set'),
135 (models.AclGroup, 'users', models.User, 'aclgroup_set'),
136 (models.Test, 'dependency_labels', models.Label,
137 'test_set'))
138 errors = []
139 for first_model, first_field, second_model, second_field in model_pairs:
140 errors.extend(self._check_invalid_related_objects(
141 first_model, first_field, second_model, second_field))
142
143 if errors:
144 subject = ('%s relationships to invalid models, cleaned all' %
145 len(errors))
146 message = '\n'.join(errors)
147 logging.warning(subject)
148 logging.warning(message)
mblighf3294cc2009-04-08 21:17:38 +0000149 email_manager.manager.enqueue_notify_email(subject, message)
150
151
Alex Milleree632912013-10-08 16:03:12 -0700152 @timer.decorate
mblighf3294cc2009-04-08 21:17:38 +0000153 def _clear_inactive_blocks(self):
154 msg = 'Clear out blocks for all completed jobs.'
155 logging.info(msg)
156 # this would be simpler using NOT IN (subquery), but MySQL
157 # treats all IN subqueries as dependent, so this optimizes much
158 # better
159 self._db.execute("""
showardeab66ce2009-12-23 00:03:56 +0000160 DELETE ihq FROM afe_ineligible_host_queues ihq
161 LEFT JOIN (SELECT DISTINCT job_id FROM afe_host_queue_entries
mblighf3294cc2009-04-08 21:17:38 +0000162 WHERE NOT complete) hqe
163 USING (job_id) WHERE hqe.job_id IS NULL""")
164
165
showard8dbd05a2010-01-12 18:54:59 +0000166 def _should_reverify_hosts_now(self):
167 reverify_period_sec = (scheduler_config.config.reverify_period_minutes
168 * 60)
169 if reverify_period_sec == 0:
170 return False
171 return (self._last_reverify_time + reverify_period_sec) <= time.time()
172
173
Eric Lie0493a42010-11-15 13:05:43 -0800174 def _choose_subset_of_hosts_to_reverify(self, hosts):
175 """Given hosts needing verification, return a subset to reverify."""
176 max_at_once = scheduler_config.config.reverify_max_hosts_at_once
177 if (max_at_once > 0 and len(hosts) > max_at_once):
178 return random.sample(hosts, max_at_once)
179 return sorted(hosts)
180
181
Alex Milleree632912013-10-08 16:03:12 -0700182 @timer.decorate
showard8dbd05a2010-01-12 18:54:59 +0000183 def _reverify_dead_hosts(self):
184 if not self._should_reverify_hosts_now():
185 return
186
187 self._last_reverify_time = time.time()
188 logging.info('Checking for dead hosts to reverify')
189 hosts = models.Host.objects.filter(
190 status=models.Host.Status.REPAIR_FAILED,
191 locked=False,
192 invalid=False)
193 hosts = hosts.exclude(
194 protection=host_protections.Protection.DO_NOT_VERIFY)
195 if not hosts:
196 return
197
Eric Lie0493a42010-11-15 13:05:43 -0800198 hosts = list(hosts)
199 total_hosts = len(hosts)
200 hosts = self._choose_subset_of_hosts_to_reverify(hosts)
201 logging.info('Reverifying dead hosts (%d of %d) %s', len(hosts),
202 total_hosts, ', '.join(host.hostname for host in hosts))
showard8dbd05a2010-01-12 18:54:59 +0000203 for host in hosts:
showardbe030fb2010-01-15 00:21:20 +0000204 models.SpecialTask.schedule_special_task(
showard8dbd05a2010-01-12 18:54:59 +0000205 host=host, task=models.SpecialTask.Task.VERIFY)
206
207
Simran Basi742b81d2014-05-30 13:51:06 -0700208 @timer.decorate
209 def _django_session_cleanup(self):
210 """Clean up django_session since django doesn't for us.
211 http://www.djangoproject.com/documentation/0.96/sessions/
212 """
213 logging.info('Deleting old sessions from django_session')
214 sql = 'TRUNCATE TABLE django_session'
215 self._db.execute(sql)
216
217
mblighf3294cc2009-04-08 21:17:38 +0000218class TwentyFourHourUpkeep(PeriodicCleanup):
219 """Cleanup that runs at the startup of monitor_db and every subsequent
220 twenty four hours.
221 """
Alex Milleree632912013-10-08 16:03:12 -0700222 timer = stats.Timer('monitor_db_cleanup.twentyfourhour_cleanup')
mblighf3294cc2009-04-08 21:17:38 +0000223
224
225 def __init__(self, db, run_at_initialize=True):
226 clean_interval = 24 * 60 # 24 hours
227 super(TwentyFourHourUpkeep, self).__init__(
228 db, clean_interval, run_at_initialize=run_at_initialize)
229
230
Alex Milleree632912013-10-08 16:03:12 -0700231 @timer.decorate
mblighf3294cc2009-04-08 21:17:38 +0000232 def _cleanup(self):
233 logging.info('Running 24 hour clean up')
showard01a51672009-05-29 18:42:37 +0000234 self._check_for_uncleanable_db_inconsistencies()
mblighf3294cc2009-04-08 21:17:38 +0000235
236
Alex Milleree632912013-10-08 16:03:12 -0700237 @timer.decorate
showard01a51672009-05-29 18:42:37 +0000238 def _check_for_uncleanable_db_inconsistencies(self):
239 logging.info('Checking for uncleanable DB inconsistencies')
240 self._check_for_active_and_complete_queue_entries()
241 self._check_for_multiple_platform_hosts()
242 self._check_for_no_platform_hosts()
showard6157c632009-07-06 20:19:31 +0000243 self._check_for_multiple_atomic_group_hosts()
showard01a51672009-05-29 18:42:37 +0000244
245
Alex Milleree632912013-10-08 16:03:12 -0700246 @timer.decorate
showard01a51672009-05-29 18:42:37 +0000247 def _check_for_active_and_complete_queue_entries(self):
248 query = models.HostQueueEntry.objects.filter(active=True, complete=True)
249 if query.count() != 0:
250 subject = ('%d queue entries found with active=complete=1'
251 % query.count())
Simran Basi1c5b0572012-10-11 11:27:51 -0700252 lines = []
253 for entry in query:
254 lines.append(str(entry.get_object_dict()))
255 if entry.status == 'Aborted':
256 logging.error('Aborted entry: %s is both active and '
257 'complete. Setting active value to False.',
258 str(entry))
259 entry.active = False
260 entry.save()
showard01a51672009-05-29 18:42:37 +0000261 self._send_inconsistency_message(subject, lines)
262
263
Alex Milleree632912013-10-08 16:03:12 -0700264 @timer.decorate
showard01a51672009-05-29 18:42:37 +0000265 def _check_for_multiple_platform_hosts(self):
266 rows = self._db.execute("""
showardeab66ce2009-12-23 00:03:56 +0000267 SELECT afe_hosts.id, hostname, COUNT(1) AS platform_count,
268 GROUP_CONCAT(afe_labels.name)
269 FROM afe_hosts
270 INNER JOIN afe_hosts_labels ON
271 afe_hosts.id = afe_hosts_labels.host_id
272 INNER JOIN afe_labels ON afe_hosts_labels.label_id = afe_labels.id
273 WHERE afe_labels.platform
274 GROUP BY afe_hosts.id
showard01a51672009-05-29 18:42:37 +0000275 HAVING platform_count > 1
276 ORDER BY hostname""")
277 if rows:
278 subject = '%s hosts with multiple platforms' % self._db.rowcount
279 lines = [' '.join(str(item) for item in row)
280 for row in rows]
281 self._send_inconsistency_message(subject, lines)
282
283
Alex Milleree632912013-10-08 16:03:12 -0700284 @timer.decorate
showard01a51672009-05-29 18:42:37 +0000285 def _check_for_no_platform_hosts(self):
286 rows = self._db.execute("""
287 SELECT hostname
showardeab66ce2009-12-23 00:03:56 +0000288 FROM afe_hosts
289 LEFT JOIN afe_hosts_labels
290 ON afe_hosts.id = afe_hosts_labels.host_id
291 AND afe_hosts_labels.label_id IN (SELECT id FROM afe_labels
292 WHERE platform)
293 WHERE NOT afe_hosts.invalid AND afe_hosts_labels.host_id IS NULL""")
showard01a51672009-05-29 18:42:37 +0000294 if rows:
Ilja H. Friedel04be2bd2014-05-07 21:29:59 -0700295 logging.warning('%s hosts with no platform\n%s', self._db.rowcount,
jamesren675bfe72010-02-19 21:56:13 +0000296 ', '.join(row[0] for row in rows))
showard01a51672009-05-29 18:42:37 +0000297
298
Alex Milleree632912013-10-08 16:03:12 -0700299 @timer.decorate
showard6157c632009-07-06 20:19:31 +0000300 def _check_for_multiple_atomic_group_hosts(self):
301 rows = self._db.execute("""
showardeab66ce2009-12-23 00:03:56 +0000302 SELECT afe_hosts.id, hostname,
303 COUNT(DISTINCT afe_atomic_groups.name) AS atomic_group_count,
304 GROUP_CONCAT(afe_labels.name),
305 GROUP_CONCAT(afe_atomic_groups.name)
306 FROM afe_hosts
307 INNER JOIN afe_hosts_labels ON
308 afe_hosts.id = afe_hosts_labels.host_id
309 INNER JOIN afe_labels ON afe_hosts_labels.label_id = afe_labels.id
310 INNER JOIN afe_atomic_groups ON
311 afe_labels.atomic_group_id = afe_atomic_groups.id
312 WHERE NOT afe_hosts.invalid AND NOT afe_labels.invalid
313 GROUP BY afe_hosts.id
showard6157c632009-07-06 20:19:31 +0000314 HAVING atomic_group_count > 1
315 ORDER BY hostname""")
316 if rows:
317 subject = '%s hosts with multiple atomic groups' % self._db.rowcount
318 lines = [' '.join(str(item) for item in row)
319 for row in rows]
320 self._send_inconsistency_message(subject, lines)
321
322
showard01a51672009-05-29 18:42:37 +0000323 def _send_inconsistency_message(self, subject, lines):
324 logging.error(subject)
325 message = '\n'.join(lines)
326 if len(message) > 5000:
327 message = message[:5000] + '\n(truncated)\n'
328 email_manager.manager.enqueue_notify_email(subject, message)