/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 org.apache.falcon.rerun.service; import org.apache.falcon.FalconException; import org.apache.falcon.rerun.event.LaterunEvent; import org.apache.falcon.rerun.event.RerunEvent.RerunType; import org.apache.falcon.rerun.handler.AbstractRerunHandler; import org.apache.falcon.rerun.handler.RerunHandlerFactory; import org.apache.falcon.rerun.queue.ActiveMQueue; import org.apache.falcon.service.FalconService; import org.apache.falcon.service.Services; import org.apache.falcon.util.StartupProperties; import org.apache.falcon.workflow.WorkflowJobEndNotificationService; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * A service implementation for Late Rerun initialized at startup. */ public class LateRunService implements FalconService { private static final Logger LOG = LoggerFactory.getLogger(LateRunService.class); private ActiveMQueue<LaterunEvent> queue; private AbstractRerunHandler<LaterunEvent, ActiveMQueue<LaterunEvent>> rerunHandler; @Override public String getName() { return LateRunService.class.getName(); } @Override public void init() throws FalconException { if (!Services.get().isRegistered(WorkflowJobEndNotificationService.SERVICE_NAME)) { throw new FalconException("WorkflowJobEndNotificationService must be configured ahead"); } rerunHandler = RerunHandlerFactory.getRerunHandler(RerunType.LATE); queue = new ActiveMQueue<LaterunEvent>( StartupProperties.get() .getProperty("broker.url", "failover:(tcp://localhost:61616)?initialReconnectDelay=5000"), "falcon.late.queue"); rerunHandler.init(queue); Services.get().<WorkflowJobEndNotificationService>getService( WorkflowJobEndNotificationService.SERVICE_NAME).registerListener(rerunHandler); } @Override public void destroy() throws FalconException { rerunHandler.close(); closeQuietly(); LOG.info("LateRun thread destroyed"); } private void closeQuietly() { if (queue != null) { queue.close(); } } }