# Copyright 2018 Nokia Networks. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import datetime from mistral.db import utils as db_utils from mistral.db.v2 import api as db_api from mistral.engine import action_handler from mistral.engine import action_queue from mistral.services import scheduler from mistral import utils from mistral_lib import actions as mistral_lib from oslo_config import cfg from oslo_log import log as logging LOG = logging.getLogger(__name__) CONF = cfg.CONF SCHEDULER_KEY = 'handle_expired_actions_key' @db_utils.retry_on_db_error @action_queue.process def handle_expired_actions(): LOG.debug("Running heartbeat checker...") interval = CONF.action_heartbeat.check_interval max_missed = CONF.action_heartbeat.max_missed_heartbeats exp_date = utils.utc_now_sec() - datetime.timedelta( seconds=max_missed * interval ) try: with db_api.transaction(): action_exs = db_api.get_running_expired_sync_actions(exp_date) LOG.debug("Found {} running and expired actions.".format( len(action_exs)) ) if action_exs: LOG.info( "Actions executions to transit to error, because " "heartbeat wasn't received: {}".format(action_exs) ) for action_ex in action_exs: result = mistral_lib.Result( error="Heartbeat wasn't received." ) action_handler.on_action_complete(action_ex, result) finally: schedule(interval) def setup(): interval = CONF.action_heartbeat.check_interval max_missed = CONF.action_heartbeat.max_missed_heartbeats enabled = interval and max_missed if not enabled: LOG.info("Action heartbeat reporting disabled.") return wait_time = interval * max_missed LOG.debug( "First run of action execution checker, wait before " "checking to make sure executors have time to send " "heartbeats. ({} seconds)".format(wait_time) ) schedule(wait_time) def schedule(run_after): scheduler.schedule_call( None, 'mistral.services.action_execution_checker.handle_expired_actions', run_after=run_after, key=SCHEDULER_KEY )