Scott Baker | 45fb7a1 | 2013-12-31 00:56:19 -0800 | [diff] [blame] | 1 | import os |
| 2 | import imp |
| 3 | import inspect |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 4 | import time |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 5 | import sys |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 6 | import traceback |
| 7 | import commands |
| 8 | import threading |
| 9 | import json |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 10 | import pdb |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 11 | import pprint |
| 12 | |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 13 | |
| 14 | from datetime import datetime |
| 15 | from collections import defaultdict |
| 16 | from core.models import * |
| 17 | from django.db.models import F, Q |
Scott Baker | c7ca655 | 2014-09-05 14:48:38 -0700 | [diff] [blame] | 18 | from django.db import connection |
Tony Mack | 387a73f | 2013-09-18 07:59:14 -0400 | [diff] [blame] | 19 | #from openstack.manager import OpenStackManager |
| 20 | from openstack.driver import OpenStackDriver |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 21 | from util.logger import Logger, logging, logger |
| 22 | #from timeout import timeout |
Sapan Bhatia | 757e0b6 | 2013-09-02 16:55:00 -0400 | [diff] [blame] | 23 | from planetstack.config import Config |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 24 | from observer.steps import * |
Scott Baker | 45fb7a1 | 2013-12-31 00:56:19 -0800 | [diff] [blame] | 25 | from syncstep import SyncStep |
Sapan Bhatia | 45cbbc3 | 2014-03-11 17:48:30 -0400 | [diff] [blame] | 26 | from toposort import toposort |
Sapan Bhatia | 13d8915 | 2014-07-23 10:35:33 -0400 | [diff] [blame] | 27 | from observer.error_mapper import * |
Sapan Bhatia | cb6f8d6 | 2015-01-17 01:03:52 +0000 | [diff] [blame] | 28 | from openstack_observer.openstacksyncstep import OpenStackSyncStep |
| 29 | |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 30 | |
Sapan Bhatia | 13c7f11 | 2013-09-02 14:19:35 -0400 | [diff] [blame] | 31 | debug_mode = False |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 32 | |
Sapan Bhatia | cb6f8d6 | 2015-01-17 01:03:52 +0000 | [diff] [blame] | 33 | class bcolors: |
| 34 | HEADER = '\033[95m' |
| 35 | OKBLUE = '\033[94m' |
| 36 | OKGREEN = '\033[92m' |
| 37 | WARNING = '\033[93m' |
| 38 | FAIL = '\033[91m' |
| 39 | ENDC = '\033[0m' |
| 40 | BOLD = '\033[1m' |
| 41 | UNDERLINE = '\033[4m' |
| 42 | |
Andy Bavier | 04111b7 | 2013-10-22 16:47:10 -0400 | [diff] [blame] | 43 | logger = Logger(level=logging.INFO) |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 44 | |
Sapan Bhatia | 13c7f11 | 2013-09-02 14:19:35 -0400 | [diff] [blame] | 45 | class StepNotReady(Exception): |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 46 | pass |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 47 | |
Scott Baker | 7771f41 | 2014-01-02 16:36:41 -0800 | [diff] [blame] | 48 | class NoOpDriver: |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 49 | def __init__(self): |
| 50 | self.enabled = True |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 51 | self.dependency_graph = None |
| 52 | |
| 53 | STEP_STATUS_WORKING=1 |
| 54 | STEP_STATUS_OK=2 |
| 55 | STEP_STATUS_KO=3 |
| 56 | |
| 57 | def invert_graph(g): |
| 58 | ig = {} |
| 59 | for k,v in g.items(): |
| 60 | for v0 in v: |
| 61 | try: |
| 62 | ig[v0].append(k) |
| 63 | except: |
| 64 | ig=[k] |
| 65 | return ig |
Scott Baker | 7771f41 | 2014-01-02 16:36:41 -0800 | [diff] [blame] | 66 | |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 67 | class PlanetStackObserver: |
Tony Mack | a7dbd42 | 2015-01-05 22:48:11 -0500 | [diff] [blame] | 68 | #sync_steps = [SyncNetworks,SyncNetworkSlivers,SyncSites,SyncSitePrivilege,SyncSlices,SyncSliceMemberships,SyncSlivers,SyncSliverIps,SyncExternalRoutes,SyncUsers,SyncRoles,SyncNodes,SyncImages,GarbageCollector] |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 69 | sync_steps = [] |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 70 | |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 71 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 72 | def __init__(self): |
| 73 | # The Condition object that gets signalled by Feefie events |
| 74 | self.step_lookup = {} |
| 75 | self.load_sync_step_modules() |
| 76 | self.load_sync_steps() |
| 77 | self.event_cond = threading.Condition() |
Scott Baker | 7771f41 | 2014-01-02 16:36:41 -0800 | [diff] [blame] | 78 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 79 | self.driver_kind = getattr(Config(), "observer_driver", "openstack") |
| 80 | if self.driver_kind=="openstack": |
| 81 | self.driver = OpenStackDriver() |
| 82 | else: |
| 83 | self.driver = NoOpDriver() |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 84 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 85 | def wait_for_event(self, timeout): |
| 86 | self.event_cond.acquire() |
| 87 | self.event_cond.wait(timeout) |
| 88 | self.event_cond.release() |
Scott Baker | 45fb7a1 | 2013-12-31 00:56:19 -0800 | [diff] [blame] | 89 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 90 | def wake_up(self): |
| 91 | logger.info('Wake up routine called. Event cond %r'%self.event_cond) |
| 92 | self.event_cond.acquire() |
| 93 | self.event_cond.notify() |
| 94 | self.event_cond.release() |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 95 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 96 | def load_sync_step_modules(self, step_dir=None): |
| 97 | if step_dir is None: |
| 98 | if hasattr(Config(), "observer_steps_dir"): |
| 99 | step_dir = Config().observer_steps_dir |
| 100 | else: |
| 101 | step_dir = "/opt/planetstack/observer/steps" |
Scott Baker | 45fb7a1 | 2013-12-31 00:56:19 -0800 | [diff] [blame] | 102 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 103 | for fn in os.listdir(step_dir): |
| 104 | pathname = os.path.join(step_dir,fn) |
| 105 | if os.path.isfile(pathname) and fn.endswith(".py") and (fn!="__init__.py"): |
| 106 | module = imp.load_source(fn[:-3],pathname) |
| 107 | for classname in dir(module): |
| 108 | c = getattr(module, classname, None) |
Scott Baker | 45fb7a1 | 2013-12-31 00:56:19 -0800 | [diff] [blame] | 109 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 110 | # make sure 'c' is a descendent of SyncStep and has a |
| 111 | # provides field (this eliminates the abstract base classes |
| 112 | # since they don't have a provides) |
Scott Baker | 45fb7a1 | 2013-12-31 00:56:19 -0800 | [diff] [blame] | 113 | |
Sapan Bhatia | 43c7f8c | 2015-01-17 01:04:10 +0000 | [diff] [blame] | 114 | if inspect.isclass(c) and (issubclass(c, SyncStep) or issubclass(c,OpenStackSyncStep)) and hasattr(c,"provides") and (c not in self.sync_steps): |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 115 | self.sync_steps.append(c) |
| 116 | logger.info('loaded sync steps: %s' % ",".join([x.__name__ for x in self.sync_steps])) |
| 117 | # print 'loaded sync steps: %s' % ",".join([x.__name__ for x in self.sync_steps]) |
Scott Baker | 45fb7a1 | 2013-12-31 00:56:19 -0800 | [diff] [blame] | 118 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 119 | def load_sync_steps(self): |
| 120 | dep_path = Config().observer_dependency_graph |
| 121 | logger.info('Loading model dependency graph from %s' % dep_path) |
| 122 | try: |
| 123 | # This contains dependencies between records, not sync steps |
| 124 | self.model_dependency_graph = json.loads(open(dep_path).read()) |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 125 | for lst in self.model_dependency_graph.values(): |
| 126 | for k in lst: |
| 127 | try: |
| 128 | deps = self.model_dependency_graph[k] |
| 129 | except: |
| 130 | self.model_dependency_graph[k] = [] |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 131 | except Exception,e: |
| 132 | raise e |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 133 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 134 | try: |
| 135 | backend_path = Config().observer_pl_dependency_graph |
| 136 | logger.info('Loading backend dependency graph from %s' % backend_path) |
| 137 | # This contains dependencies between backend records |
| 138 | self.backend_dependency_graph = json.loads(open(backend_path).read()) |
Sapan Bhatia | 0926e65 | 2015-01-29 20:51:13 +0000 | [diff] [blame] | 139 | for k,v in self.backend_dependency_graph.items(): |
| 140 | try: |
| 141 | self.model_dependency_graph[k].extend(v) |
| 142 | except KeyError: |
| 143 | self.model_dependency_graphp[k] = v |
| 144 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 145 | except Exception,e: |
| 146 | logger.info('Backend dependency graph not loaded') |
| 147 | # We can work without a backend graph |
| 148 | self.backend_dependency_graph = {} |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 149 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 150 | provides_dict = {} |
| 151 | for s in self.sync_steps: |
| 152 | self.step_lookup[s.__name__] = s |
| 153 | for m in s.provides: |
| 154 | try: |
| 155 | provides_dict[m.__name__].append(s.__name__) |
| 156 | except KeyError: |
| 157 | provides_dict[m.__name__]=[s.__name__] |
Sapan Bhatia | 04c94ad | 2013-09-02 18:00:28 -0400 | [diff] [blame] | 158 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 159 | step_graph = {} |
| 160 | for k,v in self.model_dependency_graph.iteritems(): |
| 161 | try: |
| 162 | for source in provides_dict[k]: |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 163 | if (not v): |
| 164 | step_graph[source] = [] |
| 165 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 166 | for m in v: |
| 167 | try: |
| 168 | for dest in provides_dict[m]: |
| 169 | # no deps, pass |
| 170 | try: |
| 171 | if (dest not in step_graph[source]): |
| 172 | step_graph[source].append(dest) |
| 173 | except: |
| 174 | step_graph[source]=[dest] |
| 175 | except KeyError: |
| 176 | pass |
| 177 | |
| 178 | except KeyError: |
| 179 | pass |
| 180 | # no dependencies, pass |
| 181 | |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 182 | |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 183 | self.dependency_graph = step_graph |
| 184 | self.deletion_dependency_graph = invert_graph(step_graph) |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 185 | |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 186 | pp = pprint.PrettyPrinter(indent=4) |
| 187 | pp.pprint(step_graph) |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 188 | self.ordered_steps = toposort(self.dependency_graph, map(lambda s:s.__name__,self.sync_steps)) |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 189 | #self.ordered_steps = ['SyncRoles', 'SyncControllerSites', 'SyncControllerSitePrivileges','SyncImages', 'SyncControllerImages','SyncControllerUsers','SyncControllerUserSitePrivileges','SyncControllerSlices', 'SyncControllerSlicePrivileges', 'SyncControllerUserSlicePrivileges', 'SyncControllerNetworks','SyncSlivers'] |
| 190 | #self.ordered_steps = ['SyncControllerSites'] |
| 191 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 192 | print "Order of steps=",self.ordered_steps |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 193 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 194 | self.load_run_times() |
| 195 | |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 196 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 197 | def check_duration(self, step, duration): |
| 198 | try: |
| 199 | if (duration > step.deadline): |
| 200 | logger.info('Sync step %s missed deadline, took %.2f seconds'%(step.name,duration)) |
| 201 | except AttributeError: |
| 202 | # S doesn't have a deadline |
| 203 | pass |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 204 | |
Sapan Bhatia | 285decb | 2014-04-30 00:31:44 -0400 | [diff] [blame] | 205 | def update_run_time(self, step, deletion): |
| 206 | if (not deletion): |
| 207 | self.last_run_times[step.__name__]=time.time() |
| 208 | else: |
| 209 | self.last_deletion_run_times[step.__name__]=time.time() |
Sapan Bhatia | 13c7f11 | 2013-09-02 14:19:35 -0400 | [diff] [blame] | 210 | |
Sapan Bhatia | 285decb | 2014-04-30 00:31:44 -0400 | [diff] [blame] | 211 | |
| 212 | def check_schedule(self, step, deletion): |
| 213 | last_run_times = self.last_run_times if not deletion else self.last_deletion_run_times |
| 214 | |
| 215 | time_since_last_run = time.time() - last_run_times.get(step.__name__, 0) |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 216 | try: |
| 217 | if (time_since_last_run < step.requested_interval): |
| 218 | raise StepNotReady |
| 219 | except AttributeError: |
| 220 | logger.info('Step %s does not have requested_interval set'%step.__name__) |
| 221 | raise StepNotReady |
| 222 | |
| 223 | def load_run_times(self): |
| 224 | try: |
| 225 | jrun_times = open('/tmp/observer_run_times').read() |
| 226 | self.last_run_times = json.loads(jrun_times) |
| 227 | except: |
| 228 | self.last_run_times={} |
| 229 | for e in self.ordered_steps: |
| 230 | self.last_run_times[e]=0 |
Sapan Bhatia | 285decb | 2014-04-30 00:31:44 -0400 | [diff] [blame] | 231 | try: |
| 232 | jrun_times = open('/tmp/observer_deletion_run_times').read() |
| 233 | self.last_deletion_run_times = json.loads(jrun_times) |
| 234 | except: |
| 235 | self.last_deletion_run_times={} |
| 236 | for e in self.ordered_steps: |
| 237 | self.last_deletion_run_times[e]=0 |
| 238 | |
Sapan Bhatia | 36938ca | 2013-09-02 14:35:24 -0400 | [diff] [blame] | 239 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 240 | def save_run_times(self): |
| 241 | run_times = json.dumps(self.last_run_times) |
| 242 | open('/tmp/observer_run_times','w').write(run_times) |
Sapan Bhatia | 36938ca | 2013-09-02 14:35:24 -0400 | [diff] [blame] | 243 | |
Sapan Bhatia | 285decb | 2014-04-30 00:31:44 -0400 | [diff] [blame] | 244 | deletion_run_times = json.dumps(self.last_deletion_run_times) |
| 245 | open('/tmp/observer_deletion_run_times','w').write(deletion_run_times) |
| 246 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 247 | def check_class_dependency(self, step, failed_steps): |
| 248 | step.dependenices = [] |
| 249 | for obj in step.provides: |
| 250 | step.dependenices.extend(self.model_dependency_graph.get(obj.__name__, [])) |
| 251 | for failed_step in failed_steps: |
| 252 | if (failed_step in step.dependencies): |
| 253 | raise StepNotReady |
| 254 | |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 255 | def sync(self, S, deletion): |
Scott Baker | c7ca655 | 2014-09-05 14:48:38 -0700 | [diff] [blame] | 256 | try: |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 257 | step = self.step_lookup[S] |
| 258 | start_time=time.time() |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 259 | |
| 260 | logger.info("Starting to work on step %s" % step.__name__) |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 261 | |
| 262 | dependency_graph = self.dependency_graph if not deletion else self.deletion_dependency_graph |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 263 | |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 264 | # Wait for step dependencies to be met |
| 265 | try: |
| 266 | deps = self.dependency_graph[S] |
| 267 | has_deps = True |
| 268 | except KeyError: |
| 269 | has_deps = False |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 270 | |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 271 | go = True |
Sapan Bhatia | 475c597 | 2014-11-05 10:32:41 -0500 | [diff] [blame] | 272 | |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 273 | failed_dep = None |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 274 | if (has_deps): |
| 275 | for d in deps: |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 276 | if d==step.__name__: |
| 277 | logger.info(" step %s self-wait skipped" % step.__name__) |
Sapan Bhatia | 475c597 | 2014-11-05 10:32:41 -0500 | [diff] [blame] | 278 | go = True |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 279 | continue |
| 280 | |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 281 | cond = self.step_conditions[d] |
| 282 | cond.acquire() |
| 283 | if (self.step_status[d] is STEP_STATUS_WORKING): |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 284 | logger.info(" step %s wait on dep %s" % (step.__name__, d)) |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 285 | cond.wait() |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 286 | elif self.step_status[d] == STEP_STATUS_OK: |
| 287 | go = True |
| 288 | else: |
| 289 | go = False |
| 290 | failed_dep = d |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 291 | cond.release() |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 292 | if (not go): |
| 293 | break |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 294 | else: |
| 295 | go = True |
| 296 | |
| 297 | if (not go): |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 298 | print bcolors.FAIL + "Step %r skipped on %r" % (step,failed_dep) + bcolors.ENDC |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 299 | # SMBAKER: sync_step was not defined here, so I changed |
| 300 | # this from 'sync_step' to 'step'. Verify. |
| 301 | self.failed_steps.append(step) |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 302 | my_status = STEP_STATUS_KO |
| 303 | else: |
| 304 | sync_step = step(driver=self.driver,error_map=self.error_mapper) |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 305 | sync_step.__name__ = step.__name__ |
| 306 | sync_step.dependencies = [] |
| 307 | try: |
| 308 | mlist = sync_step.provides |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 309 | |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 310 | for m in mlist: |
| 311 | sync_step.dependencies.extend(self.model_dependency_graph[m.__name__]) |
| 312 | except KeyError: |
| 313 | pass |
| 314 | sync_step.debug_mode = debug_mode |
| 315 | |
| 316 | should_run = False |
| 317 | try: |
| 318 | # Various checks that decide whether |
| 319 | # this step runs or not |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 320 | self.check_class_dependency(sync_step, self.failed_steps) # dont run Slices if Sites failed |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 321 | self.check_schedule(sync_step, deletion) # dont run sync_network_routes if time since last run < 1 hour |
| 322 | should_run = True |
| 323 | except StepNotReady: |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 324 | logger.info('Step not ready: %s'%sync_step.__name__) |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 325 | self.failed_steps.append(sync_step) |
| 326 | my_status = STEP_STATUS_KO |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 327 | except Exception,e: |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 328 | logger.error('%r' % e) |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 329 | logger.log_exc("sync step failed: %r. Deletion: %r"%(sync_step,deletion)) |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 330 | self.failed_steps.append(sync_step) |
| 331 | my_status = STEP_STATUS_KO |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 332 | |
| 333 | if (should_run): |
| 334 | try: |
| 335 | duration=time.time() - start_time |
| 336 | |
| 337 | logger.info('Executing step %s' % sync_step.__name__) |
| 338 | |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 339 | print bcolors.OKBLUE + "Executing step %s" % sync_step.__name__ + bcolors.ENDC |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 340 | failed_objects = sync_step(failed=list(self.failed_step_objects), deletion=deletion) |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 341 | |
| 342 | self.check_duration(sync_step, duration) |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 343 | |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 344 | if failed_objects: |
| 345 | self.failed_step_objects.update(failed_objects) |
| 346 | |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 347 | logger.info("Step %r succeeded" % step) |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 348 | print bcolors.OKGREEN + "Step %r succeeded" % step + bcolors.ENDC |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 349 | my_status = STEP_STATUS_OK |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 350 | self.update_run_time(sync_step,deletion) |
| 351 | except Exception,e: |
Sapan Bhatia | 6b6c218 | 2015-01-27 03:58:11 +0000 | [diff] [blame] | 352 | print bcolors.FAIL + "Model step %r failed" % (step) + bcolors.ENDC |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 353 | logger.error('Model step %r failed. This seems like a misconfiguration or bug: %r. This error will not be relayed to the user!' % (step, e)) |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 354 | logger.log_exc(e) |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 355 | self.failed_steps.append(S) |
| 356 | my_status = STEP_STATUS_KO |
| 357 | else: |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 358 | logger.info("Step %r succeeded due to non-run" % step) |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 359 | my_status = STEP_STATUS_OK |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 360 | |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 361 | try: |
| 362 | my_cond = self.step_conditions[S] |
| 363 | my_cond.acquire() |
| 364 | self.step_status[S]=my_status |
| 365 | my_cond.notify_all() |
| 366 | my_cond.release() |
| 367 | except KeyError,e: |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 368 | logger.info('Step %r is a leaf' % step) |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 369 | pass |
Scott Baker | c7ca655 | 2014-09-05 14:48:38 -0700 | [diff] [blame] | 370 | finally: |
| 371 | connection.close() |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 372 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 373 | def run(self): |
| 374 | if not self.driver.enabled: |
| 375 | return |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 376 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 377 | if (self.driver_kind=="openstack") and (not self.driver.has_openstack): |
| 378 | return |
| 379 | |
| 380 | while True: |
| 381 | try: |
Sapan Bhatia | e122dcf | 2015-01-29 20:54:17 +0000 | [diff] [blame] | 382 | loop_start = time.time() |
Sapan Bhatia | 31ebe5c | 2014-04-29 00:24:09 -0400 | [diff] [blame] | 383 | error_map_file = getattr(Config(), "error_map_path", "/opt/planetstack/error_map.txt") |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 384 | self.error_mapper = ErrorMapper(error_map_file) |
| 385 | |
| 386 | # Set of whole steps that failed |
| 387 | self.failed_steps = [] |
| 388 | |
| 389 | # Set of individual objects within steps that failed |
| 390 | self.failed_step_objects = set() |
| 391 | |
| 392 | # Set up conditions and step status |
| 393 | # This is needed for steps to run in parallel |
| 394 | # while obeying dependencies. |
| 395 | |
| 396 | providers = set() |
| 397 | for v in self.dependency_graph.values(): |
| 398 | if (v): |
| 399 | providers.update(v) |
| 400 | |
| 401 | self.step_conditions = {} |
| 402 | self.step_status = {} |
| 403 | for p in list(providers): |
| 404 | self.step_conditions[p] = threading.Condition() |
| 405 | self.step_status[p] = STEP_STATUS_WORKING |
| 406 | |
Sapan Bhatia | 31ebe5c | 2014-04-29 00:24:09 -0400 | [diff] [blame] | 407 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 408 | logger.info('Waiting for event') |
| 409 | tBeforeWait = time.time() |
Sapan Bhatia | 13d8915 | 2014-07-23 10:35:33 -0400 | [diff] [blame] | 410 | self.wait_for_event(timeout=30) |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 411 | logger.info('Observer woke up') |
| 412 | |
Sapan Bhatia | 285decb | 2014-04-30 00:31:44 -0400 | [diff] [blame] | 413 | # Two passes. One for sync, the other for deletion. |
Sapan Bhatia | 0f727b8 | 2014-08-18 02:44:20 -0400 | [diff] [blame] | 414 | for deletion in [False,True]: |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 415 | threads = [] |
Sapan Bhatia | e82f5e5 | 2014-07-23 10:02:45 -0400 | [diff] [blame] | 416 | logger.info('Deletion=%r...'%deletion) |
Sapan Bhatia | ab202a6 | 2014-09-03 11:30:21 -0400 | [diff] [blame] | 417 | schedule = self.ordered_steps if not deletion else reversed(self.ordered_steps) |
| 418 | |
| 419 | for S in schedule: |
| 420 | thread = threading.Thread(target=self.sync, args=(S, deletion)) |
| 421 | |
| 422 | logger.info('Deletion=%r...'%deletion) |
| 423 | threads.append(thread) |
Sapan Bhatia | 285decb | 2014-04-30 00:31:44 -0400 | [diff] [blame] | 424 | |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 425 | # Start threads |
| 426 | for t in threads: |
| 427 | t.start() |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 428 | |
Sapan Bhatia | 51f4893 | 2014-08-25 04:17:12 -0400 | [diff] [blame] | 429 | # Wait for all threads to finish before continuing with the run loop |
| 430 | for t in threads: |
| 431 | t.join() |
Sapan Bhatia | 285decb | 2014-04-30 00:31:44 -0400 | [diff] [blame] | 432 | |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 433 | self.save_run_times() |
Sapan Bhatia | e122dcf | 2015-01-29 20:54:17 +0000 | [diff] [blame] | 434 | loop_end = time.time() |
| 435 | open('/tmp/observer_last_run','w').write(json.dumps({'last_run': loop_end, 'last_duration':loop_end - loop_start})) |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 436 | except Exception, e: |
Scott Baker | adc7317 | 2014-09-04 10:36:51 -0700 | [diff] [blame] | 437 | logger.error('Core error. This seems like a misconfiguration or bug: %r. This error will not be relayed to the user!' % e) |
Sapan Bhatia | f73664b | 2014-04-28 13:07:18 -0400 | [diff] [blame] | 438 | logger.log_exc("Exception in observer run loop") |
| 439 | traceback.print_exc() |