/** * Copyright (c) 2010 Yahoo! Inc. All rights reserved. * 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. See accompanying LICENSE file. */ package org.apache.oozie.command.wf; import java.util.Date; import org.apache.hadoop.conf.Configuration; import org.apache.oozie.DagELFunctions; import org.apache.oozie.ErrorCode; import org.apache.oozie.WorkflowActionBean; import org.apache.oozie.WorkflowJobBean; import org.apache.oozie.XException; import org.apache.oozie.action.ActionExecutor; import org.apache.oozie.action.ActionExecutorException; import org.apache.oozie.client.OozieClient; import org.apache.oozie.client.WorkflowAction; import org.apache.oozie.client.WorkflowJob; import org.apache.oozie.client.SLAEvent.SlaAppType; import org.apache.oozie.client.SLAEvent.Status; import org.apache.oozie.command.CommandException; import org.apache.oozie.command.PreconditionException; import org.apache.oozie.executor.jpa.JPAExecutorException; import org.apache.oozie.executor.jpa.WorkflowActionGetJPAExecutor; import org.apache.oozie.executor.jpa.WorkflowActionUpdateJPAExecutor; import org.apache.oozie.executor.jpa.WorkflowJobGetJPAExecutor; import org.apache.oozie.executor.jpa.WorkflowJobUpdateJPAExecutor; import org.apache.oozie.service.ActionService; import org.apache.oozie.service.JPAService; import org.apache.oozie.service.Services; import org.apache.oozie.service.UUIDService; import org.apache.oozie.util.Instrumentation; import org.apache.oozie.util.LogUtils; import org.apache.oozie.util.XLog; import org.apache.oozie.util.db.SLADbXOperations; import org.apache.oozie.workflow.WorkflowInstance; public class ActionEndXCommand extends ActionXCommand<Void> { public static final String COULD_NOT_END = "COULD_NOT_END"; public static final String END_DATA_MISSING = "END_DATA_MISSING"; private String jobId = null; private String actionId = null; private WorkflowJobBean wfJob = null; private WorkflowActionBean wfAction = null; private JPAService jpaService = null; private ActionExecutor executor = null; public ActionEndXCommand(String actionId, String type) { super("action.end", type, 0); this.actionId = actionId; this.jobId = Services.get().get(UUIDService.class).getId(actionId); } @Override protected boolean isLockRequired() { return true; } @Override protected String getEntityKey() { return this.jobId; } @Override protected void loadState() throws CommandException { try { jpaService = Services.get().get(JPAService.class); if (jpaService != null) { this.wfJob = jpaService.execute(new WorkflowJobGetJPAExecutor(jobId)); this.wfAction = jpaService.execute(new WorkflowActionGetJPAExecutor(actionId)); LogUtils.setLogInfo(wfJob, logInfo); LogUtils.setLogInfo(wfAction, logInfo); } else { throw new CommandException(ErrorCode.E0610); } } catch (XException ex) { throw new CommandException(ex); } } @Override protected void verifyPrecondition() throws CommandException, PreconditionException { if (wfJob == null) { throw new PreconditionException(ErrorCode.E0604, jobId); } if (wfAction == null) { throw new PreconditionException(ErrorCode.E0605, actionId); } if (wfAction.isPending() && (wfAction.getStatus() == WorkflowActionBean.Status.DONE || wfAction.getStatus() == WorkflowActionBean.Status.END_RETRY || wfAction.getStatus() == WorkflowActionBean.Status.END_MANUAL)) { if (wfJob.getStatus() != WorkflowJob.Status.RUNNING) { throw new PreconditionException(ErrorCode.E0811, WorkflowJob.Status.RUNNING.toString()); } } else { throw new PreconditionException(ErrorCode.E0812, wfAction.getPending(), wfAction.getStatusStr()); } executor = Services.get().get(ActionService.class).getExecutor(wfAction.getType()); if (executor == null) { throw new CommandException(ErrorCode.E0802, wfAction.getType()); } } @Override protected Void execute() throws CommandException { LOG.debug("STARTED ActionEndXCommand for action " + actionId); Configuration conf = wfJob.getWorkflowInstance().getConf(); int maxRetries = conf.getInt(OozieClient.ACTION_MAX_RETRIES, executor.getMaxRetries()); long retryInterval = conf.getLong(OozieClient.ACTION_RETRY_INTERVAL, executor.getRetryInterval()); executor.setMaxRetries(maxRetries); executor.setRetryInterval(retryInterval); boolean isRetry = false; if (wfAction.getStatus() == WorkflowActionBean.Status.END_RETRY || wfAction.getStatus() == WorkflowActionBean.Status.END_MANUAL) { isRetry = true; } ActionExecutorContext context = new ActionXCommand.ActionExecutorContext(wfJob, wfAction, isRetry); try { LOG.debug( "End, name [{0}] type [{1}] status[{2}] external status [{3}] signal value [{4}]", wfAction.getName(), wfAction.getType(), wfAction.getStatus(), wfAction.getExternalStatus(), wfAction.getSignalValue()); WorkflowInstance wfInstance = wfJob.getWorkflowInstance(); DagELFunctions.setActionInfo(wfInstance, wfAction); wfJob.setWorkflowInstance(wfInstance); incrActionCounter(wfAction.getType(), 1); Instrumentation.Cron cron = new Instrumentation.Cron(); cron.start(); executor.end(context, wfAction); cron.stop(); addActionCron(wfAction.getType(), cron); if (!context.isEnded()) { LOG.warn(XLog.OPS, "Action Ended, ActionExecutor [{0}] must call setEndData()", executor.getType()); wfAction.setErrorInfo(END_DATA_MISSING, "Execution Ended, but End Data Missing from Action"); failJob(context); jpaService.execute(new WorkflowActionUpdateJPAExecutor(wfAction)); jpaService.execute(new WorkflowJobUpdateJPAExecutor(wfJob)); return null; } wfAction.setRetries(0); wfAction.setEndTime(new Date()); jpaService.execute(new WorkflowActionUpdateJPAExecutor(wfAction)); jpaService.execute(new WorkflowJobUpdateJPAExecutor(wfJob)); Status slaStatus = null; switch (wfAction.getStatus()) { case OK: slaStatus = Status.SUCCEEDED; break; case KILLED: slaStatus = Status.KILLED; break; case FAILED: slaStatus = Status.FAILED; break; case ERROR: LOG.info("ERROR is considered as FAILED for SLA"); slaStatus = Status.KILLED; break; default: slaStatus = Status.FAILED; break; } SLADbXOperations.writeStausEvent(wfAction.getSlaXml(), wfAction.getId(), slaStatus, SlaAppType.WORKFLOW_ACTION); queue(new NotificationXCommand(wfJob, wfAction)); LOG.debug( "Queuing commands for action=" + actionId + ", status=" + wfAction.getStatus() + ", Set pending=" + wfAction.getPending()); queue(new SignalXCommand(jobId, actionId)); } catch (ActionExecutorException ex) { LOG.warn( "Error ending action [{0}]. ErrorType [{1}], ErrorCode [{2}], Message [{3}]", wfAction.getName(), ex.getErrorType(), ex.getErrorCode(), ex.getMessage()); wfAction.setErrorInfo(ex.getErrorCode(), ex.getMessage()); wfAction.setEndTime(null); switch (ex.getErrorType()) { case TRANSIENT: if (!handleTransient(context, executor, WorkflowAction.Status.END_RETRY)) { handleNonTransient(context, executor, WorkflowAction.Status.END_MANUAL); wfAction.setPendingAge(new Date()); wfAction.setRetries(0); } wfAction.setEndTime(null); break; case NON_TRANSIENT: handleNonTransient(context, executor, WorkflowAction.Status.END_MANUAL); wfAction.setEndTime(null); break; case ERROR: handleError(context, executor, COULD_NOT_END, false, WorkflowAction.Status.ERROR); queue(new SignalXCommand(jobId, actionId)); break; case FAILED: failJob(context); break; } try { jpaService.execute(new WorkflowActionUpdateJPAExecutor(wfAction)); jpaService.execute(new WorkflowJobUpdateJPAExecutor(wfJob)); } catch (JPAExecutorException je) { throw new CommandException(je); } } catch (JPAExecutorException je) { throw new CommandException(je); } LOG.debug("ENDED ActionEndXCommand for action " + actionId); return null; } }