All Downloads are FREE. Search and download functionalities are using the official Maven repository.

azkaban.trigger.builtin.KillExecutionAction Maven / Gradle / Ivy

/*
 * Copyright 2012 LinkedIn Corp.
 *
 * 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.
 */

package azkaban.trigger.builtin;

import azkaban.Constants;
import azkaban.executor.ExecutableFlow;
import azkaban.executor.ExecutorManagerAdapter;
import azkaban.executor.Status;
import azkaban.trigger.TriggerAction;
import java.util.HashMap;
import java.util.Map;
import org.apache.log4j.Logger;

/**
 * @deprecated Create a new KillExecutionAction using FlowRunnerManager instead of ExecutorManager
 * to kill flow. Still keep the old one here for being compatible with existing SLA trigger in the
 * database. Will remove the old one when all existing triggers expire.
 */

@Deprecated
public class KillExecutionAction implements TriggerAction {

  public static final String type = "KillExecutionAction";

  private static final Logger logger = Logger
      .getLogger(KillExecutionAction.class);
  private static ExecutorManagerAdapter executorManager;
  private final String actionId;
  private final int execId;

  //todo chengren311: delete this class to executor module when all existing triggers in db are expired
  public KillExecutionAction(final String actionId, final int execId) {
    this.execId = execId;
    this.actionId = actionId;
  }

  public static void setExecutorManager(final ExecutorManagerAdapter em) {
    executorManager = em;
  }

  public static KillExecutionAction createFromJson(final Object obj) {
    return createFromJson((HashMap) obj);
  }

  public static KillExecutionAction createFromJson(final HashMap obj) {
    final Map jsonObj = (HashMap) obj;
    final String objType = (String) jsonObj.get("type");
    if (!objType.equals(type)) {
      throw new RuntimeException("Cannot create action of " + type + " from "
          + objType);
    }
    final String actionId = (String) jsonObj.get("actionId");
    final int execId = Integer.valueOf((String) jsonObj.get("execId"));
    return new KillExecutionAction(actionId, execId);
  }

  @Override
  public String getId() {
    return this.actionId;
  }

  @Override
  public String getType() {
    return type;
  }

  @Override
  public KillExecutionAction fromJson(final Object obj) throws Exception {
    return createFromJson((HashMap) obj);
  }

  @Override
  public Object toJson() {
    final Map jsonObj = new HashMap<>();
    jsonObj.put("actionId", this.actionId);
    jsonObj.put("type", type);
    jsonObj.put("execId", String.valueOf(this.execId));
    return jsonObj;
  }

  @Override
  public void doAction() throws Exception {
    final ExecutableFlow exFlow = executorManager.getExecutableFlow(this.execId);
    logger.info("ready to kill execution " + this.execId);
    if (!Status.isStatusFinished(exFlow.getStatus())) {
      logger.info("Killing execution " + this.execId);
      executorManager.cancelFlow(exFlow, Constants.AZKABAN_SLA_CHECKER_USERNAME);
    }
  }

  @Override
  public void setContext(final Map context) {
  }

  @Override
  public String getDescription() {
    return type + " for " + this.execId;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy